Pavel Gonzales

Results 4 comments of Pavel Gonzales

I have the same problem

UPD: I change the hook from "writeBundle" to "closeBundle" and it works for me.

This happens because swagger generates code like this ```js for (const key in localVarQueryParameter) { query.set(key, localVarQueryParameter[key]); } ``` but should something like this ```js if (Array.isArray(localVarQueryParameter[key])) { localVarQueryParameter[key].forEach((element: string)...