You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The returned value is a vector containing result vectors.
81
81
82
82
```php
83
-
$results->first(); //Contain the first result vector
84
-
$results->get(0); //Contain the first result vector
83
+
$results->first(); //Contains the first result vector
84
+
$results->get(0); //Contains the first result vector
85
85
$result->get(1); //Contains the second result vector
86
86
```
87
87
88
88
### Opening a transaction
89
89
90
-
The `openTransaction` method will start a transaction with over the relevant connection.
90
+
The `openTransaction` method will start a transaction over the relevant connection.
91
91
92
92
```php
93
93
use Laudis\Neo4j\Databags\Statement;
@@ -149,7 +149,7 @@ Wrapping the injections in a callable will enforce lazy initialization.
149
149
150
150
This client tries to strike a balance between extensibility, performance and clean code. All elementary classes have an interface. These provide infinite options to extend or change the implementation.
151
151
152
-
This library does use any custom result classes but uses php-ds instead. These data structures are competent, flexible and fast. It furthermore provides a consistent interface and works seamlessly with other iterables.
152
+
This library does not use any custom result classes but uses php-ds instead. These data structures are competent, flexible and fast. It furthermore provides a consistent interface and works seamlessly with other iterables.
153
153
154
154
Flexibility is maintained where possible by making all parameters iterables if they are a container of sorts. This means you can pass parameters as an array, \Ds\Map or any other object which implements the \Iterator or \IteratorAggregate. These examples are all valid:
155
155
@@ -207,13 +207,53 @@ Version 2.0 will have cluster support. There is no concrete API yet.
207
207
Version 2.0 will have graph representation suppport. The inteface for this is not yet set in stone, but will be somthing akin to this:
0 commit comments