Skip to main content

UpdateAccountPayload

The output of our update Account mutation.

type UpdateAccountPayload {
clientMutationId: String
account: Account
query: Query
profile: Profile
}

Fields

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

UpdateAccountPayload.account ● Account object

The Account that was updated by this mutation.

UpdateAccountPayload.query ● Query object

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

UpdateAccountPayload.profile ● Profile object

Reads a single Profile that is related to this Account.

Returned By

updateAccount mutation ● updateAccountByEmail mutation ● updateAccountByNodeId mutation