stablekernel/aqueduct

Use multiple query condition after join

bahramee opened this issue · 0 comments

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);