Hello guys, I’m a beginner of strapi
I’m using strapi 4.10.5, and I have create a collection type and get data by calling REST API, and I found there’s always a wrapper called “data”, like
{
"data": [
{
"id": 1,
}
],
"meta": {
"pagination": {
"page": 1,
"pageSize": 25,
"pageCount": 1,
"total": 1
}
}
}
Is there any way to remove data and meta? I mean only leave the data in “data” field
[ {
"id": 1,
} ]
Great appreciate!