1.0.0 #253

Merged
edraft merged 262 commits from 1.0.0 into master 2023-03-27 09:30:50 +02: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