Type Alias: SparqlEntailmentRegime
@kortexya/reasoninglayer / Sparql / SparqlEntailmentRegime
Type Alias: SparqlEntailmentRegime
SparqlEntailmentRegime =
"subsumption"|"simple"|"rdfs"|"owl"
Defined in: src/types/sparql.ts:17
Entailment regime a SPARQL query is translated and executed under.
Remarks
Sent as the ?entailment= request parameter. subsumption is the OSF default
(?s a Person also matches every subsort of person through the sort lattice);
simple restricts rdf:type matching to the exactly asserted types; rdfs and
owl consult the materialised entailment closure.
Example
const regime: SparqlEntailmentRegime = 'rdfs';