Function for re-treeing JSON API formatted payloads
Add to your project:
npm install join-includes
And import the function:
import joinIncludes from 'join-includes'
fetch('http://your-site.com/api/whatever?include=otherstuff').then(response => {
return response.json()
}).then(data => {
const joinedData = joinIncludes(data.data, data.included)
console.log(joinedData)
})