Fixed bug when there is more than 10 elements in a content group
This commit is contained in:
parent
1f01ae3d2b
commit
d3a349ef17
|
@ -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
|
||||||
|
|
|
@ -59,7 +59,7 @@ query getContents($language_code: String) {
|
||||||
data {
|
data {
|
||||||
attributes {
|
attributes {
|
||||||
combine
|
combine
|
||||||
contents {
|
contents(pagination: { limit: -1 }) {
|
||||||
data {
|
data {
|
||||||
id
|
id
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue