*/
//??TODO use another new options timeout
public GraphQuery prepareGraphQuery(QueryLanguage language, final String query, String baseURI)
throws StoreException, MalformedQueryException
{
GraphQuery q = new VirtuosoGraphQuery() {
public GraphResult evaluate() throws StoreException {
return executeSPARQLForGraphResult(query, getDataset(), getIncludeInferred(), getBindings());
}
};
return q;