24 lines
306 B
GraphQL
24 lines
306 B
GraphQL
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!
|
|
}
|