Skip to content

Instantly share code, notes, and snippets.

View kabece's full-sized avatar

Chris Czurylo kabece

View GitHub Profile
@kabece
kabece / schema-full.graphql
Last active December 3, 2021 06:57
Implementing GraphQL pagination in gqlgen
type Message {
id: ID!
text: String
}
type MessagesConnection {
edges: [MessagesEdge!]!
pageInfo: PageInfo!
}