graphile / global-ids

[EXPERIMENTAL] Allows you to use Relay global object identifiers in more places.
MIT License
9 stars 1 forks source link

Bug: cannot unset relations with `null` #5

Closed marshall007 closed 5 years ago

marshall007 commented 5 years ago

Assuming organization is of type ID in the following example:

mutation {
  updateUser(input: {
    nodeId: "...",
    patch: {
      organization: null
    }
  }) {
    user {
      nodeId
      organization {
        nodeId
      }
    }
  }
}