Hi,
So according to the docs, the response format of a request using strapi’s REST API is something like this:
{
"data": {
"id": 1,
"attributes": {
"title": "Restaurant A",
"description": "Restaurant A's description"
},
"meta": {
"availableLocales": []
}
},
"meta": {}
}
My question is: Is there a way to change the object property ‘data’ to whatever variable name I like?