Get localizations with strapi.entityService

Hi there

I want to get the localizations via strapi.entityService.findyMany. So far im only able to get entries in a specific local (but without the corresponding localizations) like this:

  let foo = await strapi.entityService.findMany(contentType, {
    locale: locale,
  });

But I want something like this as result (this is from a GET request):

Can you please help me? This would be very nice <3

You can use the locale: all key to get all locals

Thanks for your response! This in fact returns all locales but without any relations (it’s unclear which ones belong together). Do you know how to search for “related” entries?

I managed to do it with

  let foo = await strapi.entityService.findMany(contentType, {
    populate: 'localizations',
    // ...
  });