When I built the query using the find(query) method on the DocumentStore where in the query there was a LESS condition, only the values that were equal to the value got returned.
My query condition: condition.is("expiration", QueryCondition.Op.LESS, 123L)
After some debugging I found that class ConditionEvaluator seems to only support EQUALS operation.
Can you verify if the comparison in that class is done correctly in the framework?
Is there a way to test conditions other than EQUALS?
Best regards