Тип

CreateAutoTaskPayload

The output of our create `AutoTask` mutation.

"""The output of our create `AutoTask` mutation."""
type CreateAutoTaskPayload {
  """
  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 `AutoTask` that was created by this mutation."""
  autoTask: AutoTask
  """
  Our root query field type. Allows us to run any query from our mutation payload.
  """
  query: Query
  """An edge for our `AutoTask`. May be used by Relay 1."""
  autoTaskEdge(
    """The method to use when ordering `AutoTask`."""
    orderBy: [AutoTaskOrderBy!]! = [PRIMARY_KEY_ASC]
  ): AutoTaskEdge
}