i want use another where condition on card. can i do that in this situation ? ``` final cardQuery = Query<User>(context) ..join(set: (u) => u.card) .where((x) => x.product) .identifiedBy(productId); ```
i want use another where condition on card. can i do that in this situation ?