Skip to main content

DeleteNotePayload

The output of our delete Note mutation.

type DeleteNotePayload {
clientMutationId: String
note: Note
deletedNoteNodeId: ID
query: Query
accordMember: AccordMember
noteEdge(
orderBy: [NotesOrderBy!] = [PRIMARY_KEY_ASC]
): NotesEdge
}

Fields

DeleteNotePayload.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.

DeleteNotePayload.note ● Note object

The Note that was deleted by this mutation.

DeleteNotePayload.deletedNoteNodeId ● ID scalar

DeleteNotePayload.query ● Query object

Our root query field type. Allows us to run any query from our mutation payload.

DeleteNotePayload.accordMember ● AccordMember object

Reads a single AccordMember that is related to this Note.

DeleteNotePayload.noteEdge ● NotesEdge object

An edge for our Note. May be used by Relay 1.

DeleteNotePayload.noteEdge.orderBy ● [NotesOrderBy!] list enum

The method to use when ordering Note.

Returned By

deleteNote mutation ● deleteNoteByAccordMemberId mutation ● deleteNoteByNodeId mutation