fix: refactor tracking requests

This commit is contained in:
Christel Westerberg
2024-07-15 13:35:00 +02:00
parent c7446032fe
commit 183e1cd6d2
14 changed files with 74 additions and 163 deletions

View File

@@ -18,6 +18,12 @@ query GetAccountPage($locale: String!, $uid: String!) {
...AccountPageContentShortcuts
...AccountPageContentTextContent
}
system {
uid
created_at
updated_at
locale
}
}
}
@@ -99,15 +105,3 @@ query GetFiNoSvUrlsAccountPage($uid: String!) {
}
}
}
query GetTrackingAccountPage($locale: String!, $uid: String!) {
account_page(locale: $locale, uid: $uid) {
system {
locale
created_at
uid
updated_at
}
title
}
}

View File

@@ -172,6 +172,7 @@ query GetLoyaltyPage($locale: String!, $uid: String!) {
uid
created_at
updated_at
locale
}
}
}
@@ -362,14 +363,3 @@ query GetFiNoSvUrlsLoyaltyPage($uid: String!) {
}
}
}
query GetTrackingLoyaltyPage($locale: String!, $uid: String!) {
loyalty_page(locale: $locale, uid: $uid) {
system {
locale
created_at
uid
updated_at
}
}
}