GraphQL API
AnchorOverview
GraphQL is the primary interface for interacting with a specific user’s data. If you’re new to GraphQL, please review our How to use GraphQL guide.
AnchorAuthorization
Pass in the Session Token in the Authorization
HTTP header:
Authorization: Bearer {{SESSION_TOKEN}}
AnchorGraphQL Explorer
Our interactive GraphQL Explorer gives you access to all the queries and mutations your Quiltt environment supports. Additionally, it ships with an interactive query builder and typed schema explorer.
You can access the GraphQL Explorer in the Quiltt Dashboard
AnchorQueries
Queries allow you to get data related to a user profile.
We recommend that queries be performed via GET
requests, though POST
requests are also supported.
AnchorMutations
Mutations allow you to modify data related to a user profile.
All mutations return a success
boolean, a record
object that allows you to query for nested fields on the subject of the mutation, and an errors
object for troubleshooting unsuccessful mutations.