Hello @Oscar_Cervantes, in a query filter the $and is implicitly applied - so you don’t need to specify it explicitly. For example,
{ a: 3, b: "apples", c: 24.55 }
is same as
{ $and: [ { a: 3 }, { b: "apples" }, { c: 24.55 } ] }
Hello @Oscar_Cervantes, in a query filter the $and is implicitly applied - so you don’t need to specify it explicitly. For example,
{ a: 3, b: "apples", c: 24.55 }
is same as
{ $and: [ { a: 3 }, { b: "apples" }, { c: 24.55 } ] }