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