Skip to main content

RecoverEmailPayload

The output of our recoverEmail mutation.

type RecoverEmailPayload {
clientMutationId: String
email: Email
query: Query
receiverAccount: Account
receiverProfile: Profile
senderAccount: Account
senderProfile: Profile
accord: Accord
emailEdge(
orderBy: [EmailsOrderBy!] = [PRIMARY_KEY_ASC]
): EmailsEdge
}

Fields

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

RecoverEmailPayload.email ● Email object

RecoverEmailPayload.query ● Query object

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

RecoverEmailPayload.receiverAccount ● Account object

Reads a single Account that is related to this Email.

RecoverEmailPayload.receiverProfile ● Profile object

Reads a single Profile that is related to this Email.

RecoverEmailPayload.senderAccount ● Account object

Reads a single Account that is related to this Email.

RecoverEmailPayload.senderProfile ● Profile object

Reads a single Profile that is related to this Email.

RecoverEmailPayload.accord ● Accord object

Reads a single Accord that is related to this Email.

RecoverEmailPayload.emailEdge ● EmailsEdge object

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

RecoverEmailPayload.emailEdge.orderBy ● [EmailsOrderBy!] list enum

The method to use when ordering Email.

Returned By

recoverEmail mutation