Experiment with our GraphQL API to explore real-time data queries and mutations.
Start Querying
GraphQL Playground
Response Viewer
{'error': 'No query executed', 'status': 'Ready'}
Try These Example Queries
User Data
{
user(id: 123) {
name
email
createdAt
}
}
Project List
{
projects {
id
title
description
contributors {
name
}
}
}
Search Query
{
search(term: "web3") {
results {
title
link
summary
}
}
}