OBJECT

UpdateDeploymentPayload

The output of our update Deployment mutation.

link GraphQL Schema definition

  • type UpdateDeploymentPayload {
  • # 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 `Deployment` that was updated by this mutation.
  • deployment: Deployment
  • # 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 `Deployment`.
  • serverByServerId: Server
  • # Reads a single `Model` that is related to this `Deployment`.
  • modelByFoodModelId: Model
  • # Reads a single `Model` that is related to this `Deployment`.
  • modelByFaceModelId: Model
  • # An edge for our `Deployment`. May be used by Relay 1.
  • #
  • # Arguments
  • # orderBy: The method to use when ordering `Deployment`.
  • deploymentEdge(orderBy: [DeploymentsOrderBy!]): DeploymentsEdge
  • }