relay-knowledge 1.1.17

Graph-database-based knowledge graph project.
Documentation
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::{
    OntologyClassDefinition, OntologyClassIdentity, OntologyDomainConstraint, OntologyEntityKind,
    OntologyIdentity, OntologyObjectPropertyDefinition, OntologyRangeConstraint,
    OntologyRelationShape, OntologySchema,
};
pub use source::SourceScope;