CreateSectionPayload
The output of our create Section mutation.
type CreateSectionPayload {
clientMutationId: String
section: Section
query: Query
summary: Summary
playbook: Playbook
workspace: Workspace
createdByWorkspaceAccount: WorkspaceAccount
sectionEdge(
orderBy: [SectionsOrderBy!] = [PRIMARY_KEY_ASC]
): SectionsEdge
}
Fields
CreateSectionPayload.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.
CreateSectionPayload.section ● Section object
The Section that was created by this mutation.
CreateSectionPayload.query ● Query object
Our root query field type. Allows us to run any query from our mutation payload.
CreateSectionPayload.summary ● Summary object
Reads a single Summary that is related to this Section.
CreateSectionPayload.playbook ● Playbook object
Reads a single Playbook that is related to this Section.
CreateSectionPayload.workspace ● Workspace object
Reads a single Workspace that is related to this Section.
CreateSectionPayload.createdByWorkspaceAccount ● WorkspaceAccount object
Reads a single WorkspaceAccount that is related to this Section.
CreateSectionPayload.sectionEdge ● SectionsEdge object
An edge for our Section. May be used by Relay 1.
CreateSectionPayload.sectionEdge.orderBy ● [SectionsOrderBy!] list enum
The method to use when ordering Section.
Returned By
createSection mutation