☄ GraphQL API
Rate-limited GraphQL layer for advanced data extraction — query, introspect, and configure the public API endpoint
14,872
Total Queries
342
This Hour
7
This Minute
48 ms
Avg Query Time
1.26%
Error Rate
☄ GraphQL Query Playground
{
feedback(page: 1) {
items {
id
title
status
votes
}
}
}
{}
// ✅ Success — 42 ms (getFeedbackList)
{
"data": {
"feedback": {
"items": [
{ "id": "abc123", "title": "Dark mode support", "status": "Open", "votes": 47 },
{ "id": "def456", "title": "Export to CSV", "status": "Planned", "votes": 31 },
{ "id": "ghi789", "title": "Email digest", "status": "Closed", "votes": 22 }
]
}
}
}
Endpoint:
/graphql | Rate limit: 60 req/min | Max depth: 10
💡 Sample Queries