DeleteEmailPayload
The output of our delete Email mutation.
type DeleteEmailPayload {
clientMutationId: String
email: Email
deletedEmailNodeId: ID
query: Query
receiverAccount: Account
receiverProfile: Profile
senderAccount: Account
senderProfile: Profile
accord: Accord
emailEdge(
orderBy: [EmailsOrderBy!] = [PRIMARY_KEY_ASC]
): EmailsEdge
}
Fields
DeleteEmailPayload.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.
DeleteEmailPayload.email ● Email object
The Email that was deleted by this mutation.
DeleteEmailPayload.deletedEmailNodeId ● ID scalar
DeleteEmailPayload.query ● Query object
Our root query field type. Allows us to run any query from our mutation payload.
DeleteEmailPayload.receiverAccount ● Account object
Reads a single Account that is related to this Email.
DeleteEmailPayload.receiverProfile ● Profile object
Reads a single Profile that is related to this Email.
DeleteEmailPayload.senderAccount ● Account object
Reads a single Account that is related to this Email.
DeleteEmailPayload.senderProfile ● Profile object
Reads a single Profile that is related to this Email.
DeleteEmailPayload.accord ● Accord object
Reads a single Accord that is related to this Email.
DeleteEmailPayload.emailEdge ● EmailsEdge object
An edge for our Email. May be used by Relay 1.
DeleteEmailPayload.emailEdge.orderBy ● [EmailsOrderBy!] list enum
The method to use when ordering Email.
Returned By
deleteEmail mutation ● deleteEmailByNodeId mutation