diff options
Diffstat (limited to 'graphql/models/models.go')
-rw-r--r-- | graphql/models/models.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/graphql/models/models.go b/graphql/models/models.go index 1f182f1a..e55dfb3e 100644 --- a/graphql/models/models.go +++ b/graphql/models/models.go @@ -4,6 +4,13 @@ import ( "github.com/MichaelMure/git-bug/cache" ) +type ConnectionInput struct { + After *string + Before *string + First *int + Last *int +} + type Repository struct { Cache cache.Cacher Repo cache.RepoCacher |