UpdateUserPayload
UpdateUserPayload
The output of our updateUser
mutation.
Field | Argument | Type | Description |
---|---|---|---|
clientMutationId | String | The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations. | |
user | User | ||
query | Query | Our root query field type. Allows us to run any query from our mutation payload. | |
orgByOrgId | Org | Reads a single `Org` that is related to this `User`. | |
userByCreatedBy | User | Reads a single `User` that is related to this `User`. | |
userByUpdatedBy | User | Reads a single `User` that is related to this `User`. | |
userByDeletedBy | User | Reads a single `User` that is related to this `User`. | |
userEdge | UsersEdge | An edge for our `User`. May be used by Relay 1. | |
orderBy | [UsersOrderBy!] | The method to use when ordering `User`. |