peerbit
peerbit copied to clipboard
Not-equal-to compare queries
Something that could be useful is adding Compare.NotEqual to FieldBigIntCompareQuery, to find all documents where the value of the given field is not equal to the specified value.
Something analogous could also be useful with FieldStringMatchQuery.
Yes this make sense. I start to think about whether queries should be able to be nested, like then you can wrap everthing in a "not", like
not( property x match "abc" and property z < 123)
then you can negate any query (e.g. also negate the '$in' the other issue you created #46)