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