sofisl

Results 186 comments of sofisl

Hi @LoicMoerman, would you mind providing reproduction steps to better understand the issue? (We deal with a lot of APIs, it will help me better understand the context). Thank you!

Here's what I have after doing some digging/answering some questions: 1. @ollebergkvist, thanks for your reproduction repo. I was able to reproduce the issue successfully. During my investigation I deleted...

Hi @ssundarraj, would you mind posting the behavior you're getting vs. expected behavior? I also think understanding your use case a bit better would help. Thanks!

Hi @fider, could you try setting autopaginate: false? ``` const request = {request, pageSize: 50} const [resultArray, nextPageRequest, rawResponse] = await client.samplePaginatedMethod(request, {autoPaginate: false}); ``` From [docs](https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md), if you want...

Could you try setting `{autoPaginate: false}` when you initialize the client?