DeleteAutoTaskPayload
The output of our delete `AutoTask` mutation.
"""The output of our delete `AutoTask` mutation."""
type DeleteAutoTaskPayload {
"""
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 deleted by this mutation."""
autoTask: AutoTask
deletedAutoTaskId: ID
"""
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
}