Skip to content

Commit fce77a0

Browse files
committed
Fix call signature
1 parent be42b03 commit fce77a0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/graphql/execution/next/field_resolve_step.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ def coerce_arguments(argument_owner, ast_arguments_or_hash, run_loads = true)
5454
return EmptyObjects::EMPTY_HASH
5555
end
5656
args_hash = {}
57-
57+
5858
if ast_arguments_or_hash.nil? # This can happen with `.trigger`
5959
return args_hash
6060
end
6161

6262
arg_inputs_are_h = ast_arguments_or_hash.is_a?(Hash)
6363

64-
arg_defns.each do |arg_graphql_name, arg_defn|
64+
arg_defns.each do |arg_defn|
6565
arg_value = nil
6666
was_found = false
6767
if arg_inputs_are_h

0 commit comments

Comments
 (0)