Class: GraphQL::StaticValidation::VariableDefaultValuesAreCorrectlyTyped

Inherits:
Object
  • Object
show all
Includes:
Message::MessageHelper
Defined in:
lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed.rb

Instance Method Summary collapse

Methods included from Message::MessageHelper

#message

Instance Method Details

#validate(context) ⇒ Object



7
8
9
10
11
12
13
# File 'lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed.rb', line 7

def validate(context)
  context.visitor[GraphQL::Language::Nodes::VariableDefinition] << ->(node, parent) {
    if !node.default_value.nil?
      validate_default_value(node, context)
    end
  }
end

#validate_default_value(node, context) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/graphql/static_validation/rules/variable_default_values_are_correctly_typed.rb', line 15

def validate_default_value(node, context)
  value = node.default_value
  if node.type.is_a?(GraphQL::Language::Nodes::NonNullType)
    context.errors << message("Non-null variable $#{node.name} can't have a default value", node, context: context)
  else
    type = context.schema.type_from_ast(node.type)
    if type.nil?
      # This is handled by another validator
    elsif !context.valid_literal?(value, type)
      context.errors << message("Default value for $#{node.name} doesn't match type #{type}", node, context: context)
    end
  end
end