You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ALL filter needs to AND all of the array elements given in it. This is directly added as multiple condition in FilterableResolver. Because of this if ALL operator is used inside a OR different condition of ALL are concatenated with OR. AllFilter needs to be changed similar to NIN operator.
ALL filter needs to AND all of the array elements given in it. This is directly added as multiple condition in FilterableResolver. Because of this if ALL operator is used inside a OR different condition of ALL are concatenated with OR. AllFilter needs to be changed similar to NIN operator.
{ "find": { "filter" : { "$or": [ { "address": "testAddress" }, { "height": { "$all" : [1,2]} } ] } } }
The text was updated successfully, but these errors were encountered: