Class: GraphQL::Language::Nodes::InputObjectTypeDefinition

Inherits:
AbstractNode
  • Object
show all
Includes:
Scalars::Name
Defined in:
lib/graphql/language/nodes.rb

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #filename, #line

Instance Method Summary collapse

Methods inherited from AbstractNode

#eql?, #initialize, #position, #scalars, #to_query_string

Constructor Details

This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



536
537
538
# File 'lib/graphql/language/nodes.rb', line 536

def description
  @description
end

#directivesObject

Returns the value of attribute directives.



536
537
538
# File 'lib/graphql/language/nodes.rb', line 536

def directives
  @directives
end

#fieldsObject Also known as: children

Returns the value of attribute fields.



536
537
538
# File 'lib/graphql/language/nodes.rb', line 536

def fields
  @fields
end

#nameObject

Returns the value of attribute name.



536
537
538
# File 'lib/graphql/language/nodes.rb', line 536

def name
  @name
end

Instance Method Details

#initialize_node(name:, fields:, directives: [], description: nil) ⇒ Object



539
540
541
542
543
544
# File 'lib/graphql/language/nodes.rb', line 539

def initialize_node(name:, fields:, directives: [], description: nil)
  @name = name
  @fields = fields
  @directives = directives
  @description = description
end