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
Describe the bug
Hi, i recently got an issue with a stitched schema. My [Long!] content is getting concatenated to a array of one item (concatenation of all items). I've been able to notice that on version 10.3.6 and 10.4.3 (latest release).
I've been able to test some things :
[Long!] and [Int!] are not working [1,2,3,4,5,6] => [123456]
Input types are also not working { "values": [1, 2, 3 ] } => { "values": [123 ] }
[String!] is working fine ["1","2","3","4","5","6"] => ["1","2","3","4","5","6"]
[Boolean!] is also working fine [true, false, true] => [true, false, true]
Stitched variable of type [Long!] and [Int!] are concatenated.
Describe the bug
Hi, i recently got an issue with a stitched schema. My [Long!] content is getting concatenated to a array of one item (concatenation of all items). I've been able to notice that on version 10.3.6 and 10.4.3 (latest release).
I've been able to test some things :
[Long!] and [Int!] are not working [1,2,3,4,5,6] => [123456]
Input types are also not working { "values": [1, 2, 3 ] } => { "values": [123 ] }
[String!] is working fine ["1","2","3","4","5","6"] => ["1","2","3","4","5","6"]
[Boolean!] is also working fine [true, false, true] => [true, false, true]
Stitched variable of type [Long!] and [Int!] are concatenated.
To Reproduce
Steps to reproduce the behavior:
this requests when stitched will send [123456] to the server instead of [1,2,3,4,5,6]
Expected behavior
An array of 5 Scalar elements should not be concatenated into an array of 1 element
Desktop (please complete the following information):
Additional context
https://github.com/erwan-joly/HotChocolateStitchingBug
this bug is shown in this small repo. To use it
with arguments
when post to http://localhost:5050 the result is
when post to http://localhost:5051 the result is
The text was updated successfully, but these errors were encountered: