feat: add initial rendering of Account page data

This commit is contained in:
Arvid Norlin
2024-04-18 12:48:57 +02:00
parent 1543065d27
commit ed2cc59a87
7 changed files with 121 additions and 29 deletions

View File

@@ -1,5 +1,20 @@
#import "../PageLinks.graphql"
fragment AccountPageContentShortcuts on AccountPageContentShortcuts {
shortcuts {
title
preamble
shortcuts {
linkConnection {
edges {
node {
__typename
...AccountPageLink
...LoyaltyPageLink
...ContentPageLink
}
}
}
}
}
}