scalar Date type Label { id: ID! name: String! color: String! } type Post { id: ID! title: String! content: String! description: String! previewImageUrl: String! labels: [Label!]! publishedTime: Date } type Query { posts: [Post!]! post(id: ID!): Post! label(id: ID!): Label! }