feat(WEB-209): revalidate my pages navigation on demand

This commit is contained in:
Simon Emanuelsson
2024-04-16 12:42:44 +02:00
committed by Michael Zetterberg
parent 16634abbbf
commit 1bffbc837e
40 changed files with 600 additions and 144 deletions

View File

@@ -0,0 +1,7 @@
#import "./System.graphql"
fragment AccountPageRef on AccountPage {
system {
...System
}
}

View File

@@ -0,0 +1,7 @@
#import "./System.graphql"
fragment ContentPageRef on ContentPage {
system {
...System
}
}

View File

@@ -0,0 +1,7 @@
#import "./System.graphql"
fragment LoyaltyPageRef on LoyaltyPage {
system {
...System
}
}

View File

@@ -0,0 +1,4 @@
fragment System on EntrySystemField {
content_type_uid
uid
}