You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MaxPageSize option is ignored for PageConnection for both global configuration by .ModifyPagingOptions(...) and per case configuration[UseConnection(MaxPageSize = 3)]. The response contains the request number of items even though it exceeds the set limit.
Product
Hot Chocolate
Version
15.1.11
Link to minimal reproduction
https://github.com/tomasjancicka/HotChocolate-RelativeCursors-bug
Steps to reproduce
[UseConnection(MaxPageSize = 3)]What is expected?
MaxPageSize (global or per case) should limit the number of items returned for PageConnection.
Expected response should be similar to this:
What is actually happening?
MaxPageSize option is ignored for PageConnection for both global configuration by
.ModifyPagingOptions(...)and per case configuration[UseConnection(MaxPageSize = 3)]. The response contains the request number of items even though it exceeds the set limit.Relevant log output
Additional context
No response