We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a187b40 commit 5b841f3Copy full SHA for 5b841f3
django-subscriptions-rxdb/src/api/schema.py
@@ -49,7 +49,7 @@ def filterHeroes(
49
if not updatedAt:
50
qs = []
51
else:
52
- qs = [(Q(updatedAt__gt=updatedAt) | (Q(updatedAt=updatedAt) & Q(id__gt=id)))]
+ qs = [Q(updatedAt__gt=updatedAt) | (Q(updatedAt=updatedAt) & Q(id__gt=id))]
53
54
return [
55
Hero(
0 commit comments