Normalize your JSON:API response.
Past your API response here
{"data":[{"id":"1","type":"articles","attributes":{"title":"This project is awesome"},"relationships":{"author":{"data":{"id":"1","type":"author"}},"comments":{"data":[{"id":"1","type":"comment"},{"id":"2","type":"comment"}]}}}],"included":[{"id":"1","type":"author","attributes":{"name":"Anakin"}},{"id":"1","type":"comment","attributes":{"body":"First!"}},{"id":"2","type":"comment","attributes":{"body":"Second!"}}]}[
{
"id": 1,
"title": "This project is awesome",
"author": {
"id": 1,
"name": "Anakin"
},
"comments": [
{
"id": 1,
"body": "First!"
},
{
"id": 2,
"body": "Second!"
}
]
}
]