oxirs-arq 0.3.1

Jena-style SPARQL algebra with extension points and query optimization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod ast;
pub mod evaluator;
#[cfg(test)]
mod tests;

pub use ast::{Iri, NpsItem, PathDirection, PropertyPath};
pub use evaluator::PathAlgebraEvaluator;

use thiserror::Error;

#[derive(Debug, Error)]
pub enum PathAlgebraError {
    #[error("evaluation depth limit exceeded: {0}")]
    DepthLimitExceeded(usize),
    #[error("graph oracle error: {0}")]
    OracleError(String),
}