===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
ruby-graphql-1.11.4/CHANGELOG-pro.md-409-
ruby-graphql-1.11.4/CHANGELOG-pro.md:410:- Use a more permissive regexp (`/^\s*((?:[a-z._]+)\(.*\))\s*(asc|desc)?\s*$/im`) to parse SQL functions
ruby-graphql-1.11.4/CHANGELOG-pro.md-411-
##############################################
ruby-graphql-1.11.4/CHANGELOG.md-1300-
ruby-graphql-1.11.4/CHANGELOG.md:1301:- Validate against EnumType value names to match `/^[_a-zA-Z][_a-zA-Z0-9]*$/` #915
ruby-graphql-1.11.4/CHANGELOG.md-1302-
##############################################
ruby-graphql-1.11.4/CHANGELOG.md-1339-
ruby-graphql-1.11.4/CHANGELOG.md:1340:- Validate `graphql-pro` downloads with `rake graphql:pro:validate[$VERSION]` #846
ruby-graphql-1.11.4/CHANGELOG.md-1341-
##############################################
ruby-graphql-1.11.4/guides/queries/executing_queries.md-50-
ruby-graphql-1.11.4/guides/queries/executing_queries.md:51:GraphQL provides [query variables](https://graphql.org/learn/queries/#variables) as a way to parameterize query strings. If your query string contains variables, you can provide values in a hash of `{ String => value }` pairs. The keys should _not_ contain `"$"`.
ruby-graphql-1.11.4/guides/queries/executing_queries.md-52-
##############################################
ruby-graphql-1.11.4/guides/schema/definition.md-114-
ruby-graphql-1.11.4/guides/schema/definition.md:115:## Execution Configuration
ruby-graphql-1.11.4/guides/schema/definition.md-116-
##############################################
ruby-graphql-1.11.4/guides/schema/sdl.md-26-
ruby-graphql-1.11.4/guides/schema/sdl.md:27:## Execution
ruby-graphql-1.11.4/guides/schema/sdl.md-28-
##############################################
ruby-graphql-1.11.4/guides/subscriptions/ably_implementation.md-126-
ruby-graphql-1.11.4/guides/subscriptions/ably_implementation.md:127:## Execution configuration
ruby-graphql-1.11.4/guides/subscriptions/ably_implementation.md-128-
##############################################
ruby-graphql-1.11.4/guides/subscriptions/pusher_implementation.md-115-
ruby-graphql-1.11.4/guides/subscriptions/pusher_implementation.md:116:## Execution configuration
ruby-graphql-1.11.4/guides/subscriptions/pusher_implementation.md-117-
##############################################
ruby-graphql-1.11.4/guides/type_definitions/directives.md-19-    # These fields will be included only if the check passes:
ruby-graphql-1.11.4/guides/type_definitions/directives.md:20:    ... @include(if: $renderingDetailedProfile) {
ruby-graphql-1.11.4/guides/type_definitions/directives.md-21-      location
##############################################
ruby-graphql-1.11.4/guides/type_definitions/field_extensions.md-60-
ruby-graphql-1.11.4/guides/type_definitions/field_extensions.md:61:#### Execution "memo"
ruby-graphql-1.11.4/guides/type_definitions/field_extensions.md-62-
##############################################
ruby-graphql-1.11.4/javascript_client/src/subscriptions/__tests__/createAblyHandlerTest.ts-301-              headers: new Map([
ruby-graphql-1.11.4/javascript_client/src/subscriptions/__tests__/createAblyHandlerTest.ts:302:                ["X-Subscription-ID", `foo-${subscriptionCounter}`]
ruby-graphql-1.11.4/javascript_client/src/subscriptions/__tests__/createAblyHandlerTest.ts-303-              ])
##############################################
ruby-graphql-1.11.4/javascript_client/src/subscriptions/__tests__/createAblyHandlerTest.ts-339-          headers: new Map([
ruby-graphql-1.11.4/javascript_client/src/subscriptions/__tests__/createAblyHandlerTest.ts:340:            ["X-Subscription-ID", `foo-${subscriptionCounter}`]
ruby-graphql-1.11.4/javascript_client/src/subscriptions/__tests__/createAblyHandlerTest.ts-341-          ])
##############################################
ruby-graphql-1.11.4/javascript_client/src/sync/outfileGenerators/json.ts-1-function generateOutfile(_type: string, _clientName: string, keyValuePairs: string) {
ruby-graphql-1.11.4/javascript_client/src/sync/outfileGenerators/json.ts:2:  return `${keyValuePairs}`
ruby-graphql-1.11.4/javascript_client/src/sync/outfileGenerators/json.ts-3-}
##############################################
ruby-graphql-1.11.4/lib/graphql/query.rb-74-    # @param context [#[]] an arbitrary hash of values which you can access in {GraphQL::Field#resolve}
ruby-graphql-1.11.4/lib/graphql/query.rb:75:    # @param variables [Hash] values for `$variables` in the query
ruby-graphql-1.11.4/lib/graphql/query.rb-76-    # @param operation_name [String] if the query string contains many operations, this is the one which should be executed
##############################################
ruby-graphql-1.11.4/lib/graphql/rake_task/validate.rb-19-      if creds.nil?
ruby-graphql-1.11.4/lib/graphql/rake_task/validate.rb:20:        puts "    #{ex} failed, please set with `bundle config gems.graphql.pro $MY_CREDENTIALS`"
ruby-graphql-1.11.4/lib/graphql/rake_task/validate.rb-21-        exit(1)
##############################################
ruby-graphql-1.11.4/lib/graphql/schema.rb-857-      def_delegators :graphql_definition,
ruby-graphql-1.11.4/lib/graphql/schema.rb:858:        # Execution
ruby-graphql-1.11.4/lib/graphql/schema.rb-859-        :execution_strategy_for_operation,
##############################################
ruby-graphql-1.11.4/lib/graphql/schema/relay_classic_mutation.rb-18-    # - using a single `input:` argument makes it easy to post whole JSON objects to the mutation
ruby-graphql-1.11.4/lib/graphql/schema/relay_classic_mutation.rb:19:    #   using one GraphQL variable (`$input`) instead of making a separate variable for each argument.
ruby-graphql-1.11.4/lib/graphql/schema/relay_classic_mutation.rb-20-    #
##############################################
ruby-graphql-1.11.4/spec/graphql/analysis/ast/query_depth_spec.rb-48-        # depth of 4
ruby-graphql-1.11.4/spec/graphql/analysis/ast/query_depth_spec.rb:49:        cheese2: cheese(id: 2) @include(if: $isIncluded) {
ruby-graphql-1.11.4/spec/graphql/analysis/ast/query_depth_spec.rb-50-          similarCheese(source: SHEEP) {
##############################################
ruby-graphql-1.11.4/spec/graphql/analysis/query_depth_spec.rb-20-        # depth of 4
ruby-graphql-1.11.4/spec/graphql/analysis/query_depth_spec.rb:21:        cheese2: cheese(id: 2) @include(if: $isIncluded) {
ruby-graphql-1.11.4/spec/graphql/analysis/query_depth_spec.rb-22-          similarCheese(source: SHEEP) {
##############################################
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-14-        skipAndInclude: flavor @skip(if: true), @include(if: true)
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb:15:        includeFlavor: flavor @include(if: $t)
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb:16:        dontIncludeFlavor: flavor @include(if: $f)
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-17-        # fields in fragments
##############################################
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-55-            cheese(id: 1) {
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb:56:              dontIncludeFlavor: flavor @include(if: $f)
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-57-              dontSkipFlavor: flavor @skip(if: $f)
##############################################
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-75-            cheese(id: 1) {
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb:76:              includeFlavor: flavor @include(if: $t)
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-77-              skipFlavor: flavor @skip(if: $t)
##############################################
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-149-          flavor @include(if: #{include?}) @skip(if: #{skip?}),
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb:150:          withVariables: flavor @include(if: $include) @skip(if: $skip)
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-151-        }
##############################################
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-207-            }
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb:208:            withVariables: flavor @include(if: $include),
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-209-            ...F0
##############################################
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-251-              withVariables: flavor,
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb:252:              withVariables: flavor @include(if: $include),
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-253-              withVariables: flavor @skip(if: $skip)
##############################################
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-266-              flavor @skip(if: #{skip?}),
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb:267:              withVariables: flavor @include(if: $include),
ruby-graphql-1.11.4/spec/graphql/directive_spec.rb-268-              withVariables: flavor @skip(if: $skip)
##############################################
ruby-graphql-1.11.4/spec/graphql/execution/interpreter_spec.rb-314-      exp4: expansion(sym: "RAV") @include(if: false) { name }
ruby-graphql-1.11.4/spec/graphql/execution/interpreter_spec.rb:315:      exp5: expansion(sym: "RAV") @include(if: $truthy) { name }
ruby-graphql-1.11.4/spec/graphql/execution/interpreter_spec.rb:316:      exp6: expansion(sym: "RAV") @include(if: $falsey) { name }
ruby-graphql-1.11.4/spec/graphql/execution/interpreter_spec.rb-317-    }
##############################################
ruby-graphql-1.11.4/spec/graphql/execution/lookahead_spec.rb-398-            name @skip(if: $skipName)
ruby-graphql-1.11.4/spec/graphql/execution/lookahead_spec.rb:399:            genus @include(if: $includeGenus)
ruby-graphql-1.11.4/spec/graphql/execution/lookahead_spec.rb-400-          }
##############################################
ruby-graphql-1.11.4/spec/graphql/static_validation/rules/variables_are_used_and_defined_spec.rb-100-      query($f: Boolean!){
ruby-graphql-1.11.4/spec/graphql/static_validation/rules/variables_are_used_and_defined_spec.rb:101:        ...F @include(if: $f)
ruby-graphql-1.11.4/spec/graphql/static_validation/rules/variables_are_used_and_defined_spec.rb-102-      }
##############################################
ruby-graphql-1.11.4/spec/integration/rails/graphql/relay/connection_resolve_spec.rb-13-          }
ruby-graphql-1.11.4/spec/integration/rails/graphql/relay/connection_resolve_spec.rb:14:          parentClassName @include(if: $testParentName)
ruby-graphql-1.11.4/spec/integration/rails/graphql/relay/connection_resolve_spec.rb-15-        }
##############################################
ruby-graphql-1.11.4/spec/integration/rails/graphql/relay/connection_type_spec.rb-11-              totalCountTimes100
ruby-graphql-1.11.4/spec/integration/rails/graphql/relay/connection_type_spec.rb:12:              fieldName @include(if: $testNames)
ruby-graphql-1.11.4/spec/integration/rails/graphql/relay/connection_type_spec.rb-13-              edges {
ruby-graphql-1.11.4/spec/integration/rails/graphql/relay/connection_type_spec.rb:14:                upcasedName @include(if: $testNames)
ruby-graphql-1.11.4/spec/integration/rails/graphql/relay/connection_type_spec.rb:15:                upcasedParentName @include(if: $testNames)
ruby-graphql-1.11.4/spec/integration/rails/graphql/relay/connection_type_spec.rb-16-                edgeClassName