I have a document:
_id: <object_id>
user_id: 123
When I use findFirst to find a document with a user id that does not exist:
Users::findFirst(array("user_id" => 9867));
I find it returns the only document that exists when I need false. Is this expected behaviour?