Is there a way to parse a SPARQL string into a SelectBuilder instance so that the SPARQL can be manipulated and added to?
in pseudo-ish code something like:
SelectBuilder sub = new SelectBuilder("select ?s where {?s ?p ?o}");
.addVar("p")
.addVar("o");
- Erich
