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