CreatePlaybookPayload
The output of our create Playbook mutation.
type CreatePlaybookPayload {
clientMutationId: String
playbook: Playbook
query: Query
workspace: Workspace
playbookEdge(
orderBy: [PlaybooksOrderBy!] = [PRIMARY_KEY_ASC]
): PlaybooksEdge
}
Fields
CreatePlaybookPayload.clientMutationId ● String scalar
The exact same clientMutationId that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
CreatePlaybookPayload.playbook ● Playbook object
The Playbook that was created by this mutation.
CreatePlaybookPayload.query ● Query object
Our root query field type. Allows us to run any query from our mutation payload.
CreatePlaybookPayload.workspace ● Workspace object
Reads a single Workspace that is related to this Playbook.
CreatePlaybookPayload.playbookEdge ● PlaybooksEdge object
An edge for our Playbook. May be used by Relay 1.
CreatePlaybookPayload.playbookEdge.orderBy ● [PlaybooksOrderBy!] list enum
The method to use when ordering Playbook.
Returned By
createPlaybook mutation