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

#fieldsObject

Returns the value of attribute fields.



288
289
290
# File 'lib/graphql/language/nodes.rb', line 288

def fields
  @fields
end

#nameObject

Returns the value of attribute name.



288
289
290
# File 'lib/graphql/language/nodes.rb', line 288

def name
  @name
end

Instance Method Details

#initialize_node(name:, fields:) ⇒ Object



292
293
294
295
# File 'lib/graphql/language/nodes.rb', line 292

def initialize_node(name:, fields:)
  @name = name
  @fields = fields
end