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

23 lines
553 B
Go

// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
package graphdto
type Label struct {
ID uint32 `json:"id"`
Name string `json:"name"`
Color string `json:"color"`
}
type Post struct {
ID uint32 `json:"id"`
Title string `json:"title"`
Content string `json:"content"`
Description string `json:"description"`
PreviewImageURL string `json:"previewImageUrl"`
Labels []*Label `json:"labels"`
PublishedTime *string `json:"publishedTime,omitempty"`
}
type Query struct {
}