Sha256: 0c90021a1a8c10aa0199408c8ddd20ebb215e717b39bdc13c28e6198b36b46e0

Contents?: true

Size: 1.57 KB

Versions: 18

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true
module GraphQL
  class Schema
    # @api private
    module TypeExpression
      # Fetch a type from a type map by its AST specification.
      # Return `nil` if not found.
      # @param type_owner [#type] A thing for looking up types by name
      # @param ast_node [GraphQL::Language::Nodes::AbstractNode]
      # @return [Class, GraphQL::Schema::NonNull, GraphQL::Schema:List]
      def self.build_type(type_owner, ast_node)
        case ast_node
        when GraphQL::Language::Nodes::TypeName
          type_owner.type(ast_node.name) # rubocop:disable Development/ContextIsPassedCop -- this is a `context` or `warden`, it's already query-aware
        when GraphQL::Language::Nodes::NonNullType
          ast_inner_type = ast_node.of_type
          inner_type = build_type(type_owner, ast_inner_type)
          wrap_type(inner_type, :to_non_null_type)
        when GraphQL::Language::Nodes::ListType
          ast_inner_type = ast_node.of_type
          inner_type = build_type(type_owner, ast_inner_type)
          wrap_type(inner_type, :to_list_type)
        else
          raise "Invariant: unexpected type from ast: #{ast_node.inspect}"
        end
      end

      class << self
        private

        def wrap_type(type, wrapper_method)
          if type.nil?
            nil
          elsif wrapper_method == :to_list_type || wrapper_method == :to_non_null_type
            type.public_send(wrapper_method)
          else
            raise ArgumentError, "Unexpected wrapper method: #{wrapper_method.inspect}"
          end
        end
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
graphql-2.4.4 lib/graphql/schema/type_expression.rb
graphql-2.4.3 lib/graphql/schema/type_expression.rb
graphql-2.4.2 lib/graphql/schema/type_expression.rb
graphql-2.4.1 lib/graphql/schema/type_expression.rb
graphql-2.4.0 lib/graphql/schema/type_expression.rb
graphql-2.3.20 lib/graphql/schema/type_expression.rb
graphql-2.3.19 lib/graphql/schema/type_expression.rb
graphql-2.3.18 lib/graphql/schema/type_expression.rb
graphql-2.3.17 lib/graphql/schema/type_expression.rb
graphql-2.3.16 lib/graphql/schema/type_expression.rb
graphql-2.3.15 lib/graphql/schema/type_expression.rb
graphql-2.3.14 lib/graphql/schema/type_expression.rb
graphql-2.3.13 lib/graphql/schema/type_expression.rb
graphql-2.3.12 lib/graphql/schema/type_expression.rb
graphql-2.3.11 lib/graphql/schema/type_expression.rb
graphql-2.3.10 lib/graphql/schema/type_expression.rb
graphql-2.3.9 lib/graphql/schema/type_expression.rb
graphql-2.3.8 lib/graphql/schema/type_expression.rb