Skip to content
Snippets Groups Projects

[graphql] Convert to using the new query interpreter runtime

Merged Brett Walker requested to merge bw-graphql-interpreter into master
1 unresolved thread
Compare and Show latest version
6 files
+ 9
12
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -84,7 +84,7 @@ def resolve_with_lookahead(**args)
# Will need to be made group & namespace aware with
# https://gitlab.com/gitlab-org/gitlab-foss/issues/54520
args[:not] = args[:not].to_h
args[:not] = args[:not].to_h if args[:not].present?
args[:iids] ||= [args.delete(:iid)].compact if args[:iid]
args[:attempt_project_search_optimizations] = true if args[:search].present?
@@ -98,7 +98,7 @@ def resolve_with_lookahead(**args)
end
def ready?(**args)
args[:not] = args[:not].to_h
args[:not] = args[:not].to_h if args[:not].present?
params_not_mutually_exclusive(args, mutually_exclusive_assignee_username_args)
params_not_mutually_exclusive(args, mutually_exclusive_milestone_args)
Loading