My intention is to
- Parse a SPARQL query to the ARQ Algebra.
- Get some work done.
- Parse the ARQ Algebra back to SPARQL query.
Approach below seems to work as expected for SELECT queries, but fails for ASK and CONSTRUCT queries. I will highly value your help on this one. :)
Op opRoot = Algebra.compile(QueryFactory.create(sparqlQueryStr));
OpWalker.walk(opRoot, visitor);
OpAsQuery.asQuery(opRoot).serialize();