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, #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

#directivesObject

Returns the value of attribute directives.



400
401
402
# File 'lib/graphql/language/nodes.rb', line 400

def directives
  @directives
end

#fieldsObject

Returns the value of attribute fields.



400
401
402
# File 'lib/graphql/language/nodes.rb', line 400

def fields
  @fields
end

#nameObject

Returns the value of attribute name.



400
401
402
# File 'lib/graphql/language/nodes.rb', line 400

def name
  @name
end

Instance Method Details

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



404
405
406
407
408
# File 'lib/graphql/language/nodes.rb', line 404

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