class GraphQL::Language::Nodes::ScalarTypeDefinition

Attributes

children[RW]
description[RW]
directives[RW]
name[RW]

Public Instance Methods

initialize_node(name:, directives: [], description: nil) click to toggle source
# File lib/graphql/language/nodes.rb, line 411
def initialize_node(name,, directives: [], description: nil)
  @name = name
  @directives = directives
  @description = description
end