blog/backend/internal/framework/graph/schema.graphqls
SquidSpirit a9081734b3
All checks were successful
Frontend CI / build (push) Successful in 1m30s
BLOG-43 init: go gqlgen setup
2025-03-13 23:42:36 +08:00

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!
}