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, #description, #name, #to_h, #upcase_name

Constructor Details

#initialize(arg_hash) ⇒ InputValue

Returns a new instance of InputValue.



100
101
102
# File 'lib/graphql_schema.rb', line 100

def initialize(arg_hash)
  @hash = arg_hash
end

Instance Method Details

#default_valueObject



108
109
110
# File 'lib/graphql_schema.rb', line 108

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

#typeObject



104
105
106
# File 'lib/graphql_schema.rb', line 104

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