mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
90a45b4c09
Underline the fact that it's fine to use RepoCache alone
39 lines
689 B
Go
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
|
|
}
|