I had the idea of using this syntax for joins. ```javascript User.findOne({ email: body.email, $include: { active: true, $collection: Team } }) ``` This would find a User by their email, then find any of their teams, using the filter `{active: true}`.