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 { language {
data { data {
attributes { attributes {
@ -111,7 +111,7 @@ query getContentText($slug: String, $language_code: String) {
group { group {
data { data {
attributes { attributes {
contents { contents(pagination: { limit: -1 }) {
data { data {
attributes { attributes {
slug slug

View File

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