# GraphQL schema example # # https://gqlgen.com/getting-started/ type Label { id: ID! name: String! color: String! } type Post { id: ID! title: String! content: String! description: String! previewImageUrl: String! labels: [Label!]! } type Query { posts: [Post!]! post(id: ID!): Post! }