Class: GraphQL::Language::Nodes::ObjectTypeDefinition

Inherits:
AbstractNode
  • Object
show all
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

child_attributes, #children, #eql?, inherited, #initialize, #position, scalar_attributes, #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.



392
393
394
# File 'lib/graphql/language/nodes.rb', line 392

def description
  @description
end

#directivesObject

Returns the value of attribute directives.



392
393
394
# File 'lib/graphql/language/nodes.rb', line 392

def directives
  @directives
end

#fieldsObject

Returns the value of attribute fields.



392
393
394
# File 'lib/graphql/language/nodes.rb', line 392

def fields
  @fields
end

#interfacesObject

Returns the value of attribute interfaces.



392
393
394
# File 'lib/graphql/language/nodes.rb', line 392

def interfaces
  @interfaces
end

#nameObject

Returns the value of attribute name.



392
393
394
# File 'lib/graphql/language/nodes.rb', line 392

def name
  @name
end

Instance Method Details

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



396
397
398
399
400
401
402
# File 'lib/graphql/language/nodes.rb', line 396

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