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

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

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

#descriptionObject

Returns the value of attribute description.



424
425
426
# File 'lib/graphql/language/nodes.rb', line 424

def description
  @description
end

#directivesObject

Returns the value of attribute directives.



424
425
426
# File 'lib/graphql/language/nodes.rb', line 424

def directives
  @directives
end

#fieldsObject

Returns the value of attribute fields.



424
425
426
# File 'lib/graphql/language/nodes.rb', line 424

def fields
  @fields
end

#nameObject

Returns the value of attribute name.



424
425
426
# File 'lib/graphql/language/nodes.rb', line 424

def name
  @name
end

Instance Method Details

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



428
429
430
431
432
433
# File 'lib/graphql/language/nodes.rb', line 428

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