// Code generated by github.com/99designs/gqlgen, DO NOT EDIT. package model type CommentsConnection struct { Edges []*CommentsEdge `json:"edges"` PageInfo *PageInfo `json:"pageInfo"` } type CommentsEdge struct { Cursor uint `json:"cursor"` Node *Comment `json:"node"` } type Mutation struct { } 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"` } type Query struct { }