$contained:[1,2]// <@ [1, 2] (PG array contained by operator)
},
status:{
$not:false,// status NOT FALSE
}
}
})
```
### Complex filtering / OR queries
### Complex filtering / OR / NOT queries
It's possible to do complex where queries with multiple levels of nested AND and OR conditions. In order to do that you can use `$or` and `$and`:
It's possible to do complex where queries with multiple levels of nested AND, OR and NOT conditions. In order to do that you can use `$or`, `$and` or `$not`: