Limit the data from a nested field

System Information
  • Strapi Version: v4.3.0
  • Operating System: Macos
  • Database: sqlite
  • Node Version: 16.5.1
  • NPM Version: 8.11
  • Yarn Version: 1.22.19

How can i limit the number of returned data in a nested field ?

I want to limit the data i get from articles.data
The meta propertie isn’t related to this field so I can’t use it

Here is what I tried

await fetchAPI("/categories", {
    filters: { slug: params.slug },
    populate: {
      articles: {
        populate: "*",
        start: 1,
        limit: 2,
      },
    },
  })