eg:
Post.find({ channel_id: [] }
This generates SQL like the following, which fails:
select * from posts where channel_id in ();
This is probably not unreasonable behaviour, but it would be nice if orm detected an empty array and omitted that clause from the WHERE