git-bug/graphql/resolvers/query.go
Michael Muré 90a45b4c09
cache: rename RootCache into MultiRepoCache
Underline the fact that it's fine to use RepoCache alone
2018-09-02 15:45:14 +02:00

39 lines
689 B
Go

package resolvers
import (
"context"
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/graphql/models"
)
type rootQueryResolver struct {
cache *cache.MultiRepoCache
}
func (r rootQueryResolver) DefaultRepository(ctx context.Context) (*models.Repository, error) {
repo, err := r.cache.DefaultRepo()
if err != nil {
return nil, err
}
return &models.Repository{
Cache: r.cache,
Repo: repo,
}, nil
}
func (r rootQueryResolver) Repository(ctx context.Context, id string) (*models.Repository, error) {
repo, err := r.cache.ResolveRepo(id)
if err != nil {
return nil, err
}
return &models.Repository{
Cache: r.cache,
Repo: repo,
}, nil
}