relay-knowledge 1.1.16

Graph-database-based knowledge graph project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod entity;
pub(super) mod error;
mod graph_version;
mod index;
mod ontology;
mod source;

pub use entity::KnowledgeEntity;
pub use error::DomainError;
pub use graph_version::GraphVersion;
pub use index::{
    IndexCursor, IndexKind, IndexLag, IndexModality, IndexRefreshDiagnostics, IndexStalenessReason,
    IndexState, IndexStatus,
};
pub use ontology::{OntologyEntityKind, OntologyIdentity};
pub use source::SourceScope;