clean & validate graphql schemas and queries · syntax errors · runs locally
input
formatted
type Query {
user(id: ID!): Userusers: [User!]!
}
type User {
id: ID!name: String!email: String!posts: [Post!]!createdAt: String
}
type Post {
id: ID!title: String!body: Stringauthor: User!tags: [String!]
}status
>ready