Store Graphs and Queries
Explore how to create and manage graph data storage in Elixir by defining simple read and write functions for graph and query structs. Learn to work with PropertyGraph and TinkerGraph modules to handle graph serialization and file operations, enabling you to efficiently store and retrieve graph data.
We created data structs for transporting graphs and queries and carved out a directory tree for storing them. We’ll now define a simple API for reading and writing from the structs to the graph store.
Data flow
The following figure shows a couple of data flows to and from the graph store.
...