OBJECT

UpdateImagePayload

The output of our update Image mutation.

link GraphQL Schema definition

  • type UpdateImagePayload {
  • # 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 `Image` that was updated by this mutation.
  • image: Image
  • # Our root query field type. Allows us to run any query from our mutation payload.
  • query: Query
  • # Reads a single `Server` that is related to this `Image`.
  • serverByCapturedBy: Server
  • # An edge for our `Image`. May be used by Relay 1.
  • #
  • # Arguments
  • # orderBy: The method to use when ordering `Image`.
  • imageEdge(orderBy: [ImagesOrderBy!]): ImagesEdge
  • }