home

clean & validate graphql schemas and queries · syntax errors · runs locally

193 chars
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!]
}
>ready
ready