Open l00mi opened 11 years ago
Found the same issues in DELETE.
if(graph != null) {
query = "DELETE DATA { GRAPH " + this._nodeToQuery(graph) +" { "+ query + " } }";
} else {
query = "DELETE DATA { " + this._nodeToQuery(graph) +" { "+ query + " }";
}
The insert() of Triples does not work if there is no graph defined to insert into.
The second query is wrong. I did try to change to:
But without luck, this query is not working either.