It would be nice if you could set a FILTER NOT EXISTS (...) with the sparql module.
For example:
var s = rdf.NodeFactory.createVar("s");
var p = rdf.NodeFactory.createVar("p");
var o = rdf.NodeFactory.createVar("o");
filter = new sparql.ElementFilterNotExists(new rdf.Triple(s, p, o));
console.log(filter.toString()); // logs FILTER NOT EXISTS (?s ?p ?o)
It would be nice if you could set a
FILTER NOT EXISTS (...)
with thesparql
module.For example: