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.RootCache
16 Repo *cache.RepoCache
17}
18
19type RepositoryMutation struct {
20 Cache *cache.RootCache
21 Repo *cache.RepoCache
22}