How to I consume the Promise.all fetch api json data? It works fine to pull it if I don\'t use Promise.all. With .all it actually returns the values of the query in the cons
Simplest solution is to repeat use of Promise.all, to wait for all .json() to resolve. Just use
Promise.all([fetch1, ... fetchX]) .then(result => Promise.all(result.map(v => v.json())) .then(result => {... result[0, ...X] available as objects})