I would like to filter my Entities by checking a boolean value:
Query stableQuery = new Query(Release.KIND).addFilter("visible", FilterOperator.EQUAL, Boolean.TRUE);
This does not return any results though there are entities with visible=true.
I am very clueless and don’t even know where to start tracking this down.
Instead of using Boolean.TRUE, have you tried just using true ?
Would be good if you also shared how are you constructing the entity to see if “visible” property is indeed getting store as a Boolean.
Hope this helps!