Files
web/apps/scandic-web/lib/graphql/Fragments/CurrentFooter/AppDownloads.graphql
Erik Tiekstra ac953ccd97 feat(SW-1818): Refactored sysAsset handling to support PDF links
Approved-by: Matilda Landström
2025-06-09 09:28:17 +00:00

28 lines
409 B
GraphQL

#import "../SysAsset.graphql"
fragment CurrentFooterAppDownloads on CurrentFooter {
app_downloads {
title
app_store {
href
imageConnection {
edges {
node {
...SysAsset
}
}
}
}
google_play {
href
imageConnection {
edges {
node {
...SysAsset
}
}
}
}
}
}