git-bug/graphql/models/models.go

24 lines
387 B
Go
Raw Normal View History

2018-09-16 14:50:53 +03:00
// Package models contains the various GraphQL data models
package models
2018-07-30 02:08:45 +03:00
import (
"github.com/MichaelMure/git-bug/cache"
)
type ConnectionInput struct {
After *string
Before *string
First *int
Last *int
}
type Repository struct {
Cache *cache.MultiRepoCache
Repo *cache.RepoCache
}
2018-07-30 02:08:45 +03:00
type RepositoryMutation struct {
Cache *cache.MultiRepoCache
Repo *cache.RepoCache
2018-07-30 02:08:45 +03:00
}