22 lines
491 B
Go
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 {
|
|
}
|