Fixed collection sorting & paging order

This commit is contained in:
Sven Heidemann 2023-03-14 15:32:26 +01:00
parent 699377be54
commit 9f57182fc1

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