Sha256: 8903b0737e3b4fc72eac62a0a58f856e493262ff989501da1adf2bb6223633b4

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 KB

Contents

# Test whether `ast_value` is a valid input for `type`
class GraphQL::StaticValidation::LiteralValidator
  def validate(ast_value, type)
    if type.kind.non_null?
      (!ast_value.nil?) && validate(ast_value, type.of_type)
    elsif type.kind.list? && ast_value.is_a?(Array)
      item_type = type.of_type
      ast_value.all? { |val| validate(val, item_type) }
    elsif type.kind.scalar? && !ast_value.is_a?(GraphQL::Language::Nodes::AbstractNode) && !ast_value.is_a?(Array)
      type.valid_input?(ast_value)
    elsif type.kind.enum? && ast_value.is_a?(GraphQL::Language::Nodes::Enum)
      type.valid_input?(ast_value.name)
    elsif type.kind.input_object? && ast_value.is_a?(GraphQL::Language::Nodes::InputObject)
      fields = type.input_fields
      ast_value.pairs.all? do |value|
        field_type = fields[value.name].type
        present_if_required = field_type.kind.non_null? ? !value.nil? : true
        present_if_required && validate(value.value, field_type)
      end
    elsif ast_value.is_a?(GraphQL::Language::Nodes::VariableIdentifier)
      true
    else
      false
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
graphql-0.10.3 lib/graphql/static_validation/literal_validator.rb
graphql-0.10.2 lib/graphql/static_validation/literal_validator.rb
graphql-0.10.1 lib/graphql/static_validation/literal_validator.rb