summaryrefslogtreecommitdiff
path: root/app/graphql/resolvers/full_path_resolver.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/resolvers/full_path_resolver.rb')
-rw-r--r--app/graphql/resolvers/full_path_resolver.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/graphql/resolvers/full_path_resolver.rb b/app/graphql/resolvers/full_path_resolver.rb
index 972f318c806..2afd0411ea6 100644
--- a/app/graphql/resolvers/full_path_resolver.rb
+++ b/app/graphql/resolvers/full_path_resolver.rb
@@ -11,7 +11,7 @@ module Resolvers
end
def model_by_full_path(model, full_path)
- BatchLoader.for(full_path).batch(key: model) do |full_paths, loader, args|
+ BatchLoader::GraphQL.for(full_path).batch(key: model) do |full_paths, loader, args|
# `with_route` avoids an N+1 calculating full_path
args[:key].where_full_path_in(full_paths).with_route.each do |model_instance|
loader.call(model_instance.full_path, model_instance)