git-bug/graphql/models/models.go

23 lines
318 B
Go

package models
import (
"github.com/MichaelMure/git-bug/cache"
)
type ConnectionInput struct {
After *string
Before *string
First *int
Last *int
}
type Repository struct {
Cache *cache.RootCache
Repo *cache.RepoCache
}
type RepositoryMutation struct {
Cache *cache.RootCache
Repo *cache.RepoCache
}