Happy !

MasashiUmezawa / Boltx

Project infos

License MIT
Tags vertx, neo4j, bolt
Creation date 2017-07-16
Website https://github.com/mumez/bolt.x

Monticello registration

About Boltx

Boltx

Boltx is a VerStix client accessing to bolt.x server (Neo4j bolt protocol adapter).

You can execute Cypher expressions asynchronously from Pharo using native (Java) neo4j bolt driver.

Example

client := BxCypherClient host: 'localhost' port: 7000. 
req := client asyncQueryByCypher: 'MATCH (n:Movie{released:$y}) RETURN n' params: {'y'->2000}.
req value.