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

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.



417
418
419
# File 'lib/graphql/language/nodes.rb', line 417

def description
  @description
end

#directivesObject

Returns the value of attribute directives.



417
418
419
# File 'lib/graphql/language/nodes.rb', line 417

def directives
  @directives
end

#fieldsObject

Returns the value of attribute fields.



417
418
419
# File 'lib/graphql/language/nodes.rb', line 417

def fields
  @fields
end

#interfacesObject

Returns the value of attribute interfaces.



417
418
419
# File 'lib/graphql/language/nodes.rb', line 417

def interfaces
  @interfaces
end

#nameObject

Returns the value of attribute name.



417
418
419
# File 'lib/graphql/language/nodes.rb', line 417

def name
  @name
end

Instance Method Details

#childrenObject



427
428
429
# File 'lib/graphql/language/nodes.rb', line 427

def children
  interfaces + fields + directives
end

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



419
420
421
422
423
424
425
# File 'lib/graphql/language/nodes.rb', line 419

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