GraphQL API Gateway & GraphiQL IDE

GraphQL Sandbox Gateway

Execute GraphQL queries and mutations against the unified gateway endpoint at /api/v1/graphql.

Preset GraphQL Queries:
POST/api/v1/graphql
Interactive
Query Source
1
query GetPosts {
2
posts(limit: 5) {
3
id
4
title
5
body
6
user {
7
id
8
name
9
email
10
}
11
}
12
}
JSON Output
1
# Hit Execute Query to run GraphQL query