Sha256: eb685740b8fecc496d48ca6657d0287a85b13d49796788c55fb660b044deaaf0

Contents?: true

Size: 818 Bytes

Versions: 10

Compression:

Stored size: 818 Bytes

Contents

require_relative "./query_depth"
module GraphQL
  module Analysis
    # Used under the hood to implement depth validation,
    # see {Schema#max_depth} and {Query#max_depth}
    #
    # @example Assert max depth of 10
    #   # DON'T actually do this, graphql-ruby
    #   # Does this for you based on your `max_depth` setting
    #   MySchema.query_analyzers << GraphQL::Analysis::MaxQueryDepth.new(10)
    #
    class MaxQueryDepth < GraphQL::Analysis::QueryDepth
      def initialize(max_depth)
        disallow_excessive_depth = ->(query, depth) {
          if depth > max_depth
            GraphQL::AnalysisError.new("Query has depth of #{depth}, which exceeds max depth of #{max_depth}")
          else
            nil
          end
        }
        super(&disallow_excessive_depth)
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
graphql-1.2.6 lib/graphql/analysis/max_query_depth.rb
graphql-1.2.5 lib/graphql/analysis/max_query_depth.rb
graphql-1.2.4 lib/graphql/analysis/max_query_depth.rb
graphql-1.2.3 lib/graphql/analysis/max_query_depth.rb
graphql-1.2.2 lib/graphql/analysis/max_query_depth.rb
graphql-1.2.1 lib/graphql/analysis/max_query_depth.rb
graphql-1.2.0 lib/graphql/analysis/max_query_depth.rb
graphql-1.1.0 lib/graphql/analysis/max_query_depth.rb
graphql-1.0.0 lib/graphql/analysis/max_query_depth.rb
graphql-0.19.4 lib/graphql/analysis/max_query_depth.rb