Issue with Rest and Populate on a Media Field in Strapi

@purple_pillow did you found a solution to your issue? I don’t see how @Boegie19 is solving it.

Given I have an article API, with a “cover” media file, and I only want to populate the large format. How can it be done?

This doesn’t seem to work (I get all formats):

{
  populate: {
    cover: {
     populate : {
     formats:{
        populate: {
          large: true
        }
      }
     } 
    }
  }
}