Module raphtory::db

source ·

Modules

Defines the Edge struct, which represents an edge in the graph.
Defines the Graph struct, which represents a raphtory graph in memory.
Defines the ImmutableGraph struct, which represents a raphtory graph in a frozen state. This graph can be queried in a read-only format avoiding any locks placed when using a non-immutable graph.
A windowed view is a subset of a graph between a specific time window. For example, lets say you wanted to run an algorithm each month over a graph, graph window would allow you to split the graph into 30 day chunks to do so.
Defines the Program trait, which represents code that is used to evaluate algorithms and custom code that can be run on the graph.
Defines the Vertex struct, which represents a vertex in the graph.
Defines the ViewApi trait, which represents the API for querying a view of the graph.