Skip to content
This repository was archived by the owner on Oct 26, 2022. It is now read-only.

Commit 9b9a0bf

Browse files
Fix failure on method args
1 parent 7768b59 commit 9b9a0bf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/graphql/cache/fetcher.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ def instrument(type, field)
2121
end
2222

2323
# @private
24-
def cache_key(obj, args, type, field)
25-
Key.new(obj, args, type, field).to_s
24+
def cache_key(obj, args, type, field, ctx)
25+
Key.new(obj, args, type, field, ctx).to_s
2626
end
2727

2828
# @private

0 commit comments

Comments
 (0)