Set up a Graph Service
Explore how to implement a graph service module in Elixir to manage Neo4j property graphs. Learn to use Cypher queries over Bolt.Sips for CRUD operations, graph discovery, and extracting metadata, enabling efficient and abstracted graph management.
We'll cover the following...
We'll cover the following...
Graph service
We can do graph management of our Neo4j instance using Cypher queries over Bolt.Sips to add and delete graphs. Ideally though, we’d like to bring this under our common graph services API so that we can operate at a higher level of abstraction, which will make for less context switching when swapping between graph services.
Let’s set up a graph service for our PropertyGraph project now:
...