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

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



426
427
428
# File 'lib/graphql/language/nodes.rb', line 426

def description
  @description
end

#directivesObject Also known as: children

Returns the value of attribute directives



426
427
428
# File 'lib/graphql/language/nodes.rb', line 426

def directives
  @directives
end

#nameObject

Returns the value of attribute name



426
427
428
# File 'lib/graphql/language/nodes.rb', line 426

def name
  @name
end

Instance Method Details

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



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

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