Strapi v4 Dynamic Zones - Limitation of displaying more than 10 data entries

Hi,

I have a dynamic zone section with 11 data entries in Strapi CMS. However, my GraphQL query only returned ten entries. So, I decided to split 11 data entries into two dynamic zone sections that contain 5 and 6, respectively. And it worked.

Is there a limitation in Strapi V4 of how many data entries can be displayed for a single given section?


add to your graphql query the pagination params when fetching the sections like this :

section ( pagination : { start : 0 , limit : -1 } ) {
title
text
value
}