> ## Documentation Index
> Fetch the complete documentation index at: https://helix-claude-document-return-objects-rxi6v.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# E206

# Invalid Value Type

## Erroneous Code Example

This error occurs when you provide a value that is not a valid literal or identifier.

<CodeGroup>
  ```helixql queries.hx theme={null}
  QUERY createUser() =>
      user <- N<User>::INSERT { name: }
      RETURN user
  ```

  ```helixql schema.hx theme={null}
  N::User {
      name: String,
  }
  ```
</CodeGroup>

## Solution

Use a literal value or a valid identifier.

<CodeGroup>
  ```helixql queries.hx theme={null}
  QUERY createUser(userName: String) =>
      user <- N<User>::INSERT { name: userName }
      RETURN user
  ```

  ```helixql schema.hx theme={null}
  N::User {
      name: String,
  }
  ```
</CodeGroup>
