🔎 Schema Explorer
GraphQL SDL
type Query { users(limit: Int): [User!]! user(id: ID!): User posts(filter: PostFilter): [Post!]! } type User { id: ID! name: String! email: String! avatar: String posts: [Post!]! role: Role! createdAt: DateTime! } type Post { id: ID! title: String! content: String! author: User! comments: [Comment!]! tags: [String!] published: Boolean! } type Comment { id: ID! text: String! author: User! createdAt: DateTime! } enum Role { ADMIN USER MODERATOR } input PostFilter { authorId: ID published: Boolean tag: String } scalar DateTime
🔍 Explore
Types