> ## 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.

# E646

# Field Value is Empty

## Erroneous Code Example

This error occurs when you provide an empty value for a field in an object remapping or insert operation.

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

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

## Solution

Provide a valid value for the field. The value must be a literal, identifier, traversal, or object.

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

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