Class: GraphQL::Language::Nodes::ScalarTypeDefinition

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.



370
371
372
# File 'lib/graphql/language/nodes.rb', line 370

def description
  @description
end

#directivesObject

Returns the value of attribute directives.



370
371
372
# File 'lib/graphql/language/nodes.rb', line 370

def directives
  @directives
end

#nameObject

Returns the value of attribute name.



370
371
372
# File 'lib/graphql/language/nodes.rb', line 370

def name
  @name
end

Instance Method Details

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



374
375
376
377
378
# File 'lib/graphql/language/nodes.rb', line 374

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