Multiple reads with flareutils `list`

I'm trying to launch several flareutil list in parallel
 await Promise.all(
          arrPrefix.map(async (prefix) => {
            const values = await serviceBKV.list({
              prefix
            });

I'm getting this error because I understand within list it's writing a Response:
TypeError: Body has already been used. It can only be used once. Use tee() first if you need to read it twice
What can I do to launch several list in parallel?
Was this page helpful?