Class: GraphQL::StaticValidation::DefinitionDependencies::NodeWithPath

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/graphql/static_validation/definition_dependencies.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(node, path) ⇒ NodeWithPath

Returns a new instance of NodeWithPath



108
109
110
111
# File 'lib/graphql/static_validation/definition_dependencies.rb', line 108

def initialize(node, path)
  @node = node
  @path = path
end

Instance Attribute Details

#nodeObject (readonly)

Returns the value of attribute node



107
108
109
# File 'lib/graphql/static_validation/definition_dependencies.rb', line 107

def node
  @node
end

#pathObject (readonly)

Returns the value of attribute path



107
108
109
# File 'lib/graphql/static_validation/definition_dependencies.rb', line 107

def path
  @path
end