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

#fieldsObject

Returns the value of attribute fields.



340
341
342
# File 'lib/graphql/language/nodes.rb', line 340

def fields
  @fields
end

#interfacesObject

Returns the value of attribute interfaces.



340
341
342
# File 'lib/graphql/language/nodes.rb', line 340

def interfaces
  @interfaces
end

#nameObject

Returns the value of attribute name.



340
341
342
# File 'lib/graphql/language/nodes.rb', line 340

def name
  @name
end

Instance Method Details

#initialize_node(name:, interfaces:, fields:) ⇒ Object



344
345
346
347
348
# File 'lib/graphql/language/nodes.rb', line 344

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