Skip to main content

DeleteAccountPayload

The output of our delete Account mutation.

type DeleteAccountPayload {
clientMutationId: String
account: Account
deletedAccountNodeId: ID
query: Query
profile: Profile
}

Fields

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

DeleteAccountPayload.account ● Account object

The Account that was deleted by this mutation.

DeleteAccountPayload.deletedAccountNodeId ● ID scalar

DeleteAccountPayload.query ● Query object

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

DeleteAccountPayload.profile ● Profile object

Reads a single Profile that is related to this Account.

Returned By

deleteAccount mutation ● deleteAccountByEmail mutation ● deleteAccountByNodeId mutation