System Information
- Strapi Version: 4.1.9
- Operating System: Mac
- Database: MariaDB 10.7.3
- Node Version: 16
- NPM Version:
- Yarn Version: 1.22.11
I am exporting few collection entries via strapi.entityService.findMany
and setting as option populate: "*"
.
When then I try to import the same data via strapi.entityService.update
I get the error:
Some of the provided components in seo are not related to the entity
With hero being the name of the component in api::homepage.homepage in field seo
…
What does this error mean?
For reference, this is what the data exported looks like:
{
"api::homepage.homepage": [
{
"id": 1,
"title": "hello",
"slug": "hello",
"createdAt": "2022-04-20T04:33:38.256Z",
"updatedAt": "2022-04-27T16:07:56.941Z",
"publishedAt": "2022-04-20T04:33:44.720Z",
"seo": { "id": 1, "title": "dsadsa", "description": "dasdsa" },
}
]
}