28 lines
409 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|