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