Class: Neo4j::Driver::EagerResult
- Inherits:
-
Struct
- Object
- Struct
- Neo4j::Driver::EagerResult
- Defined in:
- lib/neo4j/driver/eager_result.rb
Overview
Materialised query result returned by Driver#execute_query: keys (column names), records (already-drained array), and the consumed summary. Modelled on Java's org.neo4j.driver.EagerResult.
Instance Attribute Summary collapse
-
#keys ⇒ Object
Returns the value of attribute keys.
-
#records ⇒ Object
Returns the value of attribute records.
-
#summary ⇒ Object
Returns the value of attribute summary.
Instance Attribute Details
#keys ⇒ Object
Returns the value of attribute keys
8 9 10 |
# File 'lib/neo4j/driver/eager_result.rb', line 8 def keys @keys end |
#records ⇒ Object
Returns the value of attribute records
8 9 10 |
# File 'lib/neo4j/driver/eager_result.rb', line 8 def records @records end |
#summary ⇒ Object
Returns the value of attribute summary
8 9 10 |
# File 'lib/neo4j/driver/eager_result.rb', line 8 def summary @summary end |