Skip to main content

CreateAccountPayload

The output of our create Account mutation.

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

Fields

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

CreateAccountPayload.account ● Account object

The Account that was created by this mutation.

CreateAccountPayload.query ● Query object

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

CreateAccountPayload.profile ● Profile object

Reads a single Profile that is related to this Account.

Returned By

createAccount mutation