Hey ,
I have posted a question on stackoverflow , if this can help ?
However, I am sorry its not on public repo. But I can tell you what’s the issue. In one collection I have a field say : ‘thumbnail’ ( where i save images ) . Earlier , the value for it was a path ( url in string ) to uploads folder location , where the image is . That’s why I am seeing this error.
When I remvoed that thumbnail field , it didn’t show that error anymore, in my model definition about that field it is :
“thumbnail”: {
“model”: “file”,
“via”: “related”,
“plugin”: “upload”
}
Is it that after 3.0.0 , strapi doesn’t support image url in the field if the type of that field is defined like the one above .?