-
|
Is it possible to add pagination in a resolver for children? (using HotChocolate v16) I can add [UseFiltering] and [UseSorting] and then use a QueryContext to get all the infos. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I think I found my problem. My resolver returned a Page directly. I changed it to return a Task<Page>, and then the PagingArguments startet working. |
Beta Was this translation helpful? Give feedback.
I think I found my problem. My resolver returned a Page directly. I changed it to return a Task<Page>, and then the PagingArguments startet working.