RecoverAccountPayload
The output of our recoverAccount mutation.
type RecoverAccountPayload {
clientMutationId: String
account: Account
query: Query
profile: Profile
}
Fields
RecoverAccountPayload.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.
RecoverAccountPayload.account ● Account object
RecoverAccountPayload.query ● Query object
Our root query field type. Allows us to run any query from our mutation payload.
RecoverAccountPayload.profile ● Profile object
Reads a single Profile that is related to this Account.
Returned By
recoverAccount mutation