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, #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

#directivesObject

Returns the value of attribute directives.



361
362
363
# File 'lib/graphql/language/nodes.rb', line 361

def directives
  @directives
end

#fieldsObject

Returns the value of attribute fields.



361
362
363
# File 'lib/graphql/language/nodes.rb', line 361

def fields
  @fields
end

#interfacesObject

Returns the value of attribute interfaces.



361
362
363
# File 'lib/graphql/language/nodes.rb', line 361

def interfaces
  @interfaces
end

#nameObject

Returns the value of attribute name.



361
362
363
# File 'lib/graphql/language/nodes.rb', line 361

def name
  @name
end

Instance Method Details

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



365
366
367
368
369
370
# File 'lib/graphql/language/nodes.rb', line 365

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