← Back

GraphQL Playground

Unlike REST where you get the whole object, in GraphQL you ask for exactly what you want.

Query

query { user(id: 1) { name email } }

Response (JSON)

...