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