Class: GraphQL::StaticValidation::DefinitionDependencies::NodeWithPath
- Inherits:
 - 
      Object
      
        
- Object
 - GraphQL::StaticValidation::DefinitionDependencies::NodeWithPath
 
 
- Extended by:
 - Forwardable
 
- Defined in:
 - lib/graphql/static_validation/definition_dependencies.rb
 
Instance Attribute Summary collapse
- 
  
    
      #node  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute node.
 - 
  
    
      #path  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute path.
 
Instance Method Summary collapse
- 
  
    
      #initialize(node, path)  ⇒ NodeWithPath 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of NodeWithPath.
 
Constructor Details
#initialize(node, path) ⇒ NodeWithPath
Returns a new instance of NodeWithPath.
      101 102 103 104  | 
    
      # File 'lib/graphql/static_validation/definition_dependencies.rb', line 101 def initialize(node, path) @node = node @path = path end  | 
  
Instance Attribute Details
#node ⇒ Object (readonly)
Returns the value of attribute node.
      100 101 102  | 
    
      # File 'lib/graphql/static_validation/definition_dependencies.rb', line 100 def node @node end  | 
  
#path ⇒ Object (readonly)
Returns the value of attribute path.
      100 101 102  | 
    
      # File 'lib/graphql/static_validation/definition_dependencies.rb', line 100 def path @path end  |