Neo4j
Binding: %neo4j
Runs Cypher queries against a Neo4j graph database, for exploring and querying graph-shaped data straight from a notebook.
%neo4j
MATCH (p:Person)-[:FRIENDS_WITH]->(f:Person)
RETURN p.name, f.name
LIMIT 25
By default, several statements separated by ; in the same paragraph are all executed against the same connection.
Configuration
| Property | Default | Description |
|---|---|---|
neo4j.url | bolt://localhost:7687 | The Neo4j BOLT connection URL. |
neo4j.database | (empty, uses the default database) | The target Neo4j database. |
neo4j.auth.type | BASIC | Authentication type (NONE or BASIC). |
neo4j.auth.user / neo4j.auth.password | — | Credentials, when BASIC auth is used. |
neo4j.multi.statement | true | Whether to run multiple ;-separated statements in one paragraph. |
neo4j.max.concurrency | 50 | Max concurrent calls from Skeyenote to the Neo4j server. |
These are set by your administrator from the interpreter settings screen.