2024-06-24 23:34:10 +00:00
|
|
|
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
2024-06-26 01:45:04 +00:00
|
|
|
type CommentsConnection struct {
|
|
|
|
Edges []*CommentsEdge `json:"edges"`
|
|
|
|
PageInfo *PageInfo `json:"pageInfo"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CommentsEdge struct {
|
|
|
|
Cursor uint `json:"cursor"`
|
|
|
|
Node *Comment `json:"node"`
|
|
|
|
}
|
|
|
|
|
2024-06-24 23:34:10 +00:00
|
|
|
type Mutation struct {
|
|
|
|
}
|
|
|
|
|
2024-06-26 01:45:04 +00:00
|
|
|
type PageInfo struct {
|
|
|
|
StartCursor uint `json:"startCursor"`
|
|
|
|
EndCursor uint `json:"endCursor"`
|
|
|
|
HasNextPage bool `json:"hasNextPage"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type PostsConnection struct {
|
|
|
|
Edges []*PostsEdge `json:"edges"`
|
|
|
|
PageInfo *PageInfo `json:"pageInfo"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type PostsEdge struct {
|
|
|
|
Cursor uint `json:"cursor"`
|
|
|
|
Node *Post `json:"node"`
|
|
|
|
}
|
|
|
|
|
2024-06-24 23:34:10 +00:00
|
|
|
type Query struct {
|
|
|
|
}
|