Class: GraphQL::Language::Nodes::InterfaceTypeDefinition

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.



472
473
474
# File 'lib/graphql/language/nodes.rb', line 472

def description
  @description
end

#directivesObject

Returns the value of attribute directives.



472
473
474
# File 'lib/graphql/language/nodes.rb', line 472

def directives
  @directives
end

#fieldsObject

Returns the value of attribute fields.



472
473
474
# File 'lib/graphql/language/nodes.rb', line 472

def fields
  @fields
end

#nameObject

Returns the value of attribute name.



472
473
474
# File 'lib/graphql/language/nodes.rb', line 472

def name
  @name
end

Instance Method Details

#childrenObject



481
482
483
# File 'lib/graphql/language/nodes.rb', line 481

def children
  fields + directives
end

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



474
475
476
477
478
479
# File 'lib/graphql/language/nodes.rb', line 474

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