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

22 lines
491 B
Go

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