models.go
1package models
2
3import (
4 "github.com/MichaelMure/git-bug/cache"
5)
6
7type ConnectionInput struct {
8 After *string
9 Before *string
10 First *int
11 Last *int
12}
13
14type Repository struct {
15 Cache cache.Cacher
16 Repo cache.RepoCacher
17}
18
19type RepositoryMutation struct {
20 Cache cache.Cacher
21 Repo cache.RepoCacher
22}