From b1c5a568dd8b6c63d05f08c097f26afd7277f0dd Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Thu, 21 Dec 2023 21:34:37 +0100 Subject: Add a failing test for unused variables bug --- src/Language/GraphQL/Validate/Rules.hs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Language/GraphQL') diff --git a/src/Language/GraphQL/Validate/Rules.hs b/src/Language/GraphQL/Validate/Rules.hs index 8c3156b..4d5a91d 100644 --- a/src/Language/GraphQL/Validate/Rules.hs +++ b/src/Language/GraphQL/Validate/Rules.hs @@ -618,6 +618,10 @@ noUndefinedVariablesRule = , "\"." ] +-- Used to find the difference between defined and used variables. The first +-- argument are variables defined in the operation, the second argument are +-- variables used in the query. It should return the difference between these +-- 2 sets. type UsageDifference = HashMap Full.Name [Full.Location] -> HashMap Full.Name [Full.Location] -- cgit v1.2.3