$organization = Organizations::findFirst() return one object. But when I trying to have conditions inside like
$organization = Organizations::findFirst(array(array('tax_id' => $taxId)));
It just can't find anything.
Query in mongo console could get correct object:
db.organizations.findOne({tax_id: "$taxId"})