aqueduct icon indicating copy to clipboard operation
aqueduct copied to clipboard

Use multiple query condition after join

Open bahramee opened this issue 4 years ago • 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);

bahramee avatar Mar 07 '21 10:03 bahramee