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