UpdateNotePayload
The output of our update Note mutation.
type UpdateNotePayload {
clientMutationId: String
note: Note
query: Query
accordMember: AccordMember
noteEdge(
orderBy: [NotesOrderBy!] = [PRIMARY_KEY_ASC]
): NotesEdge
}
Fields
UpdateNotePayload.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.
UpdateNotePayload.note ● Note object
The Note that was updated by this mutation.
UpdateNotePayload.query ● Query object
Our root query field type. Allows us to run any query from our mutation payload.
UpdateNotePayload.accordMember ● AccordMember object
Reads a single AccordMember that is related to this Note.
UpdateNotePayload.noteEdge ● NotesEdge object
An edge for our Note. May be used by Relay 1.
UpdateNotePayload.noteEdge.orderBy ● [NotesOrderBy!] list enum
The method to use when ordering Note.
Returned By
updateNote mutation ● updateNoteByAccordMemberId mutation ● updateNoteByNodeId mutation