1.0.0.rc2 #250

Merged
edraft merged 9 commits from 1.0.0.rc2 into 1.0.0 2023-03-20 13:40:00 +01:00
Showing only changes of commit 9f57182fc1 - Show all commits

View File

@ -182,10 +182,10 @@ class QueryABC(ObjectType):
if filter is not None:
collection = filter.filter(collection)
if page is not None:
collection = page.filter(collection)
if sort is not None:
collection = sort.filter(collection)
if page is not None:
collection = page.filter(collection)
return collection