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, #initialize, #position, #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.



216
217
218
# File 'lib/graphql/language/nodes.rb', line 216

def fields
  @fields
end

#interfacesObject

Returns the value of attribute interfaces.



216
217
218
# File 'lib/graphql/language/nodes.rb', line 216

def interfaces
  @interfaces
end

#nameObject

Returns the value of attribute name.



216
217
218
# File 'lib/graphql/language/nodes.rb', line 216

def name
  @name
end

Instance Method Details

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



218
219
220
221
222
# File 'lib/graphql/language/nodes.rb', line 218

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