neo4j-php / Bolt

PHP library to provide connectivity to graph database over TCP socket with Bolt specification
https://packagist.org/packages/stefanak-michal/bolt
MIT License
73 stars 10 forks source link

added pipeline versions of methods #100

Closed stefanak-michal closed 2 years ago

stefanak-michal commented 2 years ago

Allowed methods for pipelining: run, pull, pull_all, discard, discard_all, begin, commit, rollback, reset

Each pipelined version use the same method name with _ prefix.

To fetch all responses use fetchPipelineResponse method. If any of responses contains error the output array contains instance of MessageException or IgnoredException.

closing #99