I have an ontology, and I am wondering if the reasoner can be enabled with the GRAPH Component.
First let right the query where I am doing the reasoning
SELECT *
{
GRAPH <virtual://Customers> {
?s a ?c
}
?c rdfs:subClassOf vcard:Individual
}
Ideally I would much prefer to let the stardog reasoner do this for me. And simply have something a kind to
SELECT *
{
GRAPH <virtual://Customers/reasoning> {
?s a ?c
}
}
like I would if I was calling a real SPARQL endpoint
SELECT *
{
{
SERVICE <http://admin:admin@localhost:5820/example3/query/reasoning> {
?s a vcard:Individual
}
}
}
Is reasoning on virtual graph supported, if so what the syntax to enable it.
Thanks
-Serge