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
//! SPARQL 1.1 UPDATE Graph Management Operations — facade module.
//!
//! This is a thin re-export facade. The implementation is split across:
//! - `update_graph_management_types` — structs, enums, data model types
//! - `update_graph_management_ops` — SPARQL Update graph management operations
//! - `update_graph_management_protocol` — HTTP/SPARQL protocol handling
pub use crate::update_graph_management_ops::GraphManagementExecutor;
pub use crate::update_graph_management_protocol::{
    GraphManagementHttpResponse, GraphManagementParser, GraphManagementProtocolError,
    GraphManagementRequestHandler,
};
pub use crate::update_graph_management_types::{
    GraphManagementDataset, GraphManagementOp, GraphManagementResult, GraphManagementTarget, Triple,
};