OBJECT
UpdateOrgUserPayload
The output of our update OrgUser mutation.
link GraphQL Schema definition
- type UpdateOrgUserPayload {
- # The exact same `clientMutationId` that was provided in the mutation input,
- # unchanged and unused. May be used by a client to track mutations.
- : String
- # The `OrgUser` that was updated by this mutation.
- : OrgUser
- # Our root query field type. Allows us to run any query from our mutation payload.
- : Query
- # Reads a single `Organization` that is related to this `OrgUser`.
- : Organization
- # An edge for our `OrgUser`. May be used by Relay 1.
- #
- # Arguments
- # orderBy: The method to use when ordering `OrgUser`.
- (: [OrgUsersOrderBy!]): OrgUsersEdge
- }