GraphQL Query Editor

Lines: 0 | Characters: 0 Ready

Results & Visualization

{ "data": { "user": { "id": "1", "name": "John Doe", "email": "[email protected]", "posts": [ { "id": "101", "title": "My First Post", "content": "This is my first blog post...", "createdAt": "2023-01-15T10:30:00Z" }, { "id": "102", "title": "GraphQL Introduction", "content": "Learning GraphQL is exciting...", "createdAt": "2023-01-20T14:45:00Z" } ] } } }
Query
Root Type
user(id: ID!): User
Field on Query
User
Object Type
id: ID!
Field on User
name: String!
Field on User
email: String!
Field on User
posts: [Post!]!
Field on User
Post
Object Type
query GetUser
user(id: $id)
id
name
email
posts
id
title
content
createdAt
Response Time: 45ms Valid Query