fix: add imageContainer reference in rte

This commit is contained in:
Christel Westerberg
2024-07-04 10:33:49 +02:00
parent 55a71f001f
commit 6184662caa
14 changed files with 252 additions and 25 deletions

View File

@@ -70,6 +70,15 @@ query GetLoyaltyPage($locale: String!, $uid: String!) {
__typename
...LoyaltyPageLink
...ContentPageLink
...Image
... on ImageContainer {
title
image_left
image_right
system {
uid
}
}
}
}
totalCount
@@ -223,6 +232,12 @@ query GetLoyaltyPageRefs($locale: String!, $uid: String!) {
...System
}
}
... on ImageContainer {
__typename
system {
...System
}
}
}
}
}