diff options
Diffstat (limited to 'graphql/resolvers/root.go')
-rw-r--r-- | graphql/resolvers/root.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphql/resolvers/root.go b/graphql/resolvers/root.go index 767e82d2..1003f7f1 100644 --- a/graphql/resolvers/root.go +++ b/graphql/resolvers/root.go @@ -6,24 +6,24 @@ import ( ) type RootResolver struct { - cache.RootCache + cache.MultiRepoCache } func NewRootResolver() *RootResolver { return &RootResolver{ - RootCache: cache.NewCache(), + MultiRepoCache: cache.NewMultiRepoCache(), } } func (r RootResolver) Query() graph.QueryResolver { return &rootQueryResolver{ - cache: &r.RootCache, + cache: &r.MultiRepoCache, } } func (r RootResolver) Mutation() graph.MutationResolver { return &mutationResolver{ - cache: &r.RootCache, + cache: &r.MultiRepoCache, } } |