Class: GraphQLSchema::InputValue

Inherits:
Object
  • Object
show all
Includes:
NamedHash
Defined in:
lib/graphql_schema.rb

Instance Method Summary collapse

Methods included from NamedHash

#camelize_name, #classify_name, #name, #upcase_name

Constructor Details

#initialize(arg_hash) ⇒ InputValue

Returns a new instance of InputValue.



68
69
70
# File 'lib/graphql_schema.rb', line 68

def initialize(arg_hash)
  @hash = arg_hash
end

Instance Method Details

#default_valueObject



76
77
78
# File 'lib/graphql_schema.rb', line 76

def default_value
  @default_value ||= @hash.fetch('defaultValue')
end

#typeObject



72
73
74
# File 'lib/graphql_schema.rb', line 72

def type
  @type ||= TypeDeclaration.new(@hash.fetch('type'))
end