46 lines
616 B
GraphQL
46 lines
616 B
GraphQL
fragment AccountPageContentShortcuts on AccountPageContentShortcuts {
|
|
shortcuts {
|
|
title
|
|
preamble
|
|
shortcuts {
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageLink
|
|
...LoyaltyPageLink
|
|
...ContentPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment AccountPageLink on AccountPage {
|
|
system {
|
|
locale
|
|
uid
|
|
}
|
|
title
|
|
url
|
|
}
|
|
|
|
fragment LoyaltyPageLink on LoyaltyPage {
|
|
system {
|
|
locale
|
|
uid
|
|
}
|
|
title
|
|
url
|
|
}
|
|
|
|
fragment ContentPageLink on ContentPage {
|
|
system {
|
|
locale
|
|
uid
|
|
}
|
|
title
|
|
url
|
|
}
|