[i18n] How to update an existing localized collection entry per REST API or GraphQL?

After thinking about this some more, I realized that this is only a problem with singleTypes. It’s not an issue with collectionTypes, because each localization has an id that you can access and use to update it. So I converted my singleType into a collection, and now it works. Where I was querying for the singleType before, now I’m querying for a collectionType by locale, and only using the first result in the data array. It’s not as intuitive as using a singleType, but it works.

1 Like