// 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 { }