Skip to main content

Module graph

Module graph 

Source
Expand description

Graph module for entity and relation storage.

Re-exports§

pub use entity::delete_entity;
pub use entity::get_entity;
pub use entity::insert_entity;
pub use entity::list_entities;
pub use entity::update_entity;
pub use entity::Entity;
pub use relation::get_neighbors;
pub use relation::get_relations_by_source;
pub use relation::insert_relation;
pub use relation::Neighbor;
pub use relation::Relation;
pub use traversal::bfs_traversal;
pub use traversal::compute_graph_stats;
pub use traversal::dfs_traversal;
pub use traversal::find_shortest_path;
pub use traversal::Direction;
pub use traversal::GraphStats;
pub use traversal::PathStep;
pub use traversal::TraversalNode;
pub use traversal::TraversalPath;
pub use traversal::TraversalQuery;

Modules§

entity
Entity storage module for the knowledge graph.
relation
Relation storage module for the knowledge graph.
traversal