How to get started with graph traversal in python

I want to write a simple python script that performs graph traversal. However, i couldn't find any resource that can help me get start. The only traversing related documentation i can find is implemented in Java using TraversalDescription. Is the same feature available for python drive?

TraversalDescription is a Java API only available when you use Neo4j as an embedded database.
Embedded Neo4j is only possible in a Java Virtual Machine.

In Python, your only option is to use the Neo4j Python driver and use it to execute Cypher queries.

Neo4j Traversal API vs. Cypher - Stack Overflow this might be an interesting read to get you started.

1 Like