-
Notifications
You must be signed in to change notification settings - Fork 322
Closed
Description
Hi,
My team has run into an issue with sending GraphQL requests with lists with greater than 256 elements over HTTP. This is occurring when the list is either directly in the query, or sent as a variable.
I think from my investigation that this is due to using the default DataBinder limit DataBinder.DEFAULT_AUTO_GROW_COLLECTION_LIMIT
as we simply construct a normal DataBinder instance here:
Line 124 in a9e4324
DataBinder binder = new DataBinder(null, argumentName != null ? argumentName : "arguments"); |
I would have expected a more generous default, the ability to configure the property, or inject a different instance.
This is my first issue I've reported here so apologies if I've made any mistakes or need to change the issue - thanks!
Metadata
Metadata
Assignees
Labels
type: enhancementA general enhancementA general enhancement