I'm trying to use Sesame QueryBuilder to compose my queries in Java code. I had some success as can be seen in one of my answers related to this topic. The issue I'm facing right now is that the query builder seems to lack several useful functions, namely:
- Aggregation functions in
SELECT
s (COUNT
being an example) HAVING
clause
Given there isn't much documentation I might be just overlooking something. Any hints on how to build such queries would be much appreciated.