Skip to main content

UpsertProfilePayload

The output of our upsert Profile mutation.

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

Fields

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

UpsertProfilePayload.profile ● Profile object

The Profile that was upserted by this mutation.

UpsertProfilePayload.query ● Query object

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

UpsertProfilePayload.account ● Account object

Reads a single Account that is related to this Profile.

Returned By

upsertProfileById mutation