Profile
AnchorOverview
A Profile represents the information about the authenticated user.
AnchorSchemas
To access the full documentation and typings, explore the schema in the GraphQL Explorer in the Quiltt Dashboard.
AnchorQueries
Anchorprofile
Get information about the user’s Profile.
query GetUserProfile { profile { id name phone email metadata }}
AnchorMutations
AnchorprofileUpdate
Update the User’s profile.
mutation UpdateUserProfile($input: ProfileUpdateInput!) { profileUpdate(input: $input) { success record { id name email metadata } errors { message path } }}
AnchorVariables
{ "input": { "name": "Joe Exotic", "metadata" { "favoriteAnimal": "Tiger" } }}