Toolspark

GraphQL Playground

Client-side GraphQL schema parser and query validator. No server needed.

Share:𝕏fin

📐 Schema (SDL)

🏗️ Parsed Schema

enumRole
ADMINUSERMODERATOR
typeQuery
users(limit: Int): [User!]!
user(id: ID!): User
posts(authorId: ID): [Post!]!
typeMutation
createUser(name: String!, email: String!): User!
createPost(title: String!, content: String!, authorId: ID!): Post!
typeUser
id: ID!
name: String!
email: String!
posts: [Post!]!
createdAt: String!
typePost
id: ID!
title: String!
content: String!
author: User!
published: Boolean!
createdAt: String!

✅ Validation Result

✓ Field "users" → [User!]!

Field "limit" not found on type "Query".

Field "10" not found on type "Query".

Field "id" not found on type "Query".

Field "name" not found on type "Query".

Field "email" not found on type "Query".

✓ Field "posts" → [Post!]!

Field "title" not found on type "Query".

Field "published" not found on type "Query".

Frequently Asked Questions

Related Tools