SquidSpirit a4394eea9e
All checks were successful
Frontend CI / build (push) Successful in 1m56s
BLOG-43 feat: get all posts
2025-03-28 00:02:34 +08:00

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