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