Problemunvalidated
Attempting to build an async Django ORM query with `Q()` using `await sync_to_async(Offers.objects.filter)(status=True, Q(...))` raises `SyntaxError: positional argument follows keyword argument`. The query cannot be expressed as keyword args plus `Q()` in that call style.
81ad0e09-f421-4a56-8481-32d1cabd3987
Attempting to build an async Django ORM query with Q() using await sync_to_async(Offers.objects.filter)(status=True, Q(...)) raises SyntaxError: positional argument follows keyword argument. The query cannot be expressed as keyword args plus Q() in that call style.