Sha256: 7b7ae2caca14de59a48ddf128f945361c9713999d04a44bc196d7183d161f306

Contents?: true

Size: 522 Bytes

Versions: 111

Compression:

Stored size: 522 Bytes

Contents

# frozen_string_literal: true
module GraphQL
  module StaticValidation
    class QueryRootExistsError < StaticValidation::Error

      def initialize(message, path: nil, nodes: [])
        super(message, path: path, nodes: nodes)
      end

      # A hash representation of this Message
      def to_h
        extensions = {
          "code" => code,
        }

        super.merge({
          "extensions" => extensions
        })
      end

      def code
        "missingQueryConfiguration"
      end
    end
  end
end

Version data entries

111 entries across 111 versions & 1 rubygems

Version Path
graphql-2.2.16 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.1.13 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.3.9 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.3.8 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.3.7 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.3.6 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.3.5 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.0.31 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.3.2 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.3.1 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-1.13.23 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.3.0 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.2.14 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.2.13 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.2.12 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.0.29 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.1.12 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-1.13.22 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.2.11 lib/graphql/static_validation/rules/query_root_exists_error.rb
graphql-2.2.10 lib/graphql/static_validation/rules/query_root_exists_error.rb