Class: GraphQL::Language::Nodes::InterfaceTypeExtension

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

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



534
535
536
# File 'lib/graphql/language/nodes.rb', line 534

def directives
  @directives
end

#fieldsObject

Returns the value of attribute fields



534
535
536
# File 'lib/graphql/language/nodes.rb', line 534

def fields
  @fields
end

#nameObject

Returns the value of attribute name



534
535
536
# File 'lib/graphql/language/nodes.rb', line 534

def name
  @name
end

Instance Method Details

#childrenObject



542
543
544
# File 'lib/graphql/language/nodes.rb', line 542

def children
  fields + directives
end

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



536
537
538
539
540
# File 'lib/graphql/language/nodes.rb', line 536

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