* the default graph against which to execute the query if not
* FROM clause is present
* @return the resulting ResultSet, Graph or Boolean value
*/
public Object executeSparqlQuery(Query query, TripleCollection defaultGraph) {
final QueryEngine queryEngine = this.queryEngine;
if (queryEngine != null) {
return queryEngine.execute(this, defaultGraph, query);
} else {
throw new NoQueryEngineException();
}
}