blob: 2cf629cdd8db32f7d1e06b9990af950a8009716f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
package resolvers
import (
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/graphql/graph"
)
type Backend struct {
cache.RootCache
}
func NewBackend() *Backend {
return &Backend{
RootCache: cache.NewCache(),
}
}
func (r Backend) Query() graph.QueryResolver {
return &rootQueryResolver{
cache: &r.RootCache,
}
}
func (r Backend) Mutation() graph.MutationResolver {
return &mutationResolver{
cache: &r.RootCache,
}
}
func (Backend) AddCommentOperation() graph.AddCommentOperationResolver {
return &addCommentOperationResolver{}
}
func (r Backend) Bug() graph.BugResolver {
return &bugResolver{}
}
func (Backend) CreateOperation() graph.CreateOperationResolver {
return &createOperationResolver{}
}
func (Backend) LabelChangeOperation() graph.LabelChangeOperationResolver {
return &labelChangeOperation{}
}
func (r Backend) Repository() graph.RepositoryResolver {
return &repoResolver{}
}
func (Backend) SetStatusOperation() graph.SetStatusOperationResolver {
return &setStatusOperationResolver{}
}
func (Backend) SetTitleOperation() graph.SetTitleOperationResolver {
return &setTitleOperationResolver{}
}
|