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.
102 103 104 105 |
# File 'lib/graphql/static_validation/definition_dependencies.rb', line 102 def initialize(node, path) @node = node @path = path end |
Instance Attribute Details
#node ⇒ Object (readonly)
Returns the value of attribute node.
101 102 103 |
# File 'lib/graphql/static_validation/definition_dependencies.rb', line 101 def node @node end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
101 102 103 |
# File 'lib/graphql/static_validation/definition_dependencies.rb', line 101 def path @path end |