OBJECT

mnUpdateServerPayload

The output of our update mn Server mutation.

link GraphQL Schema definition

  • type mnUpdateServerPayload {
  • # The exact same `clientMutationId` that was provided in the mutation input,
  • # unchanged and unused. May be used by a client to track mutations.
  • clientMutationId: String
  • # The `Server` that was updated by this mutation.
  • server: Server
  • # Our root query field type. Allows us to run any query from our mutation payload.
  • query: Query
  • # Reads a single `Organization` that is related to this `Server`.
  • organizationByOrganizationId: Organization
  • # An edge for our `Server`. May be used by Relay 1.
  • #
  • # Arguments
  • # orderBy: The method to use when ordering `Server`.
  • serverEdge(orderBy: [ServersOrderBy!]): ServersEdge
  • }