Fixed bug when there is more than 10 elements in a content group

This commit is contained in:
DrMint 2022-05-15 18:16:47 +02:00
parent 1f01ae3d2b
commit d3a349ef17
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ query getContentText($slug: String, $language_code: String) {
}
}
}
translations {
translations(pagination: { limit: -1 }) {
language {
data {
attributes {
@ -111,7 +111,7 @@ query getContentText($slug: String, $language_code: String) {
group {
data {
attributes {
contents {
contents(pagination: { limit: -1 }) {
data {
attributes {
slug

View File

@ -59,7 +59,7 @@ query getContents($language_code: String) {
data {
attributes {
combine
contents {
contents(pagination: { limit: -1 }) {
data {
id
}