When the explode option is set to true in the OpenAPI specification and the object being serialized contains an array property, the array is incorrectly serialized as a comma-separated string in the query parameters.
For example, ?param=1,2,3 instead of ?param=1¶m=2¶m=3.
The serializeValue method in the requestBuilder does not distinguish whether the explode option is enabled.
When the explode option is set to true in the OpenAPI specification and the object being serialized contains an array property, the array is incorrectly serialized as a comma-separated string in the query parameters. For example,
?param=1,2,3
instead of?param=1¶m=2¶m=3
.The serializeValue method in the requestBuilder does not distinguish whether the explode option is enabled.