similar issue here with nested image lists
In my boostrap, i have my files defined as such
"post.list.0.images.0": getFileData('Keypoint1_Top_No_Glow@2x.png'),
"post.list.0.images.1": getFileData('Keypoint1_Bottom_No_Glow@2x.png'),
"post.list.0.titleImage": getFileData('Keypoint1_Cursor@2x.png'),
... // other image uploaded afterwards
i am then uploading using
strapi.entityService.uploadFiles(createdEntry, files, { model, });
All images get uploaded, and titleImage does get assigned correctly, but the first two are not assigned. the images object is supposed to be a list of media but my data used in the query is always an empty array
i’ve tried giving an array of a specific size when creating the entry to no avail
Is this not supported yet?