28 lines
387 B
GraphQL
28 lines
387 B
GraphQL
#import "../Image.graphql"
|
|
|
|
fragment AppDownloads on CurrentFooter {
|
|
app_downloads {
|
|
title
|
|
app_store {
|
|
href
|
|
imageConnection {
|
|
edges {
|
|
node {
|
|
...Image
|
|
}
|
|
}
|
|
}
|
|
}
|
|
google_play {
|
|
href
|
|
imageConnection {
|
|
edges {
|
|
node {
|
|
...Image
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|