fix: add navigation subitems

This commit is contained in:
Arvid Norlin
2024-04-11 13:53:26 +02:00
parent e5876e4e14
commit de025fc889
4 changed files with 72 additions and 22 deletions
+26 -6
View File
@@ -5,25 +5,45 @@ query GetNavigationMyPages {
... on NavigationMyPagesItemsItem {
__typename
item {
link_text
sub_items {
... on NavigationMyPagesItemsItemBlockSubItemsItem {
__typename
item {
link_text
pageConnection {
edges {
node {
... on CodeDefinedPage {
title
url
}
... on ContentPage {
title
}
}
}
}
}
}
}
pageConnection {
edges {
node {
... on CodeDefinedPage {
... on ContentPage {
title
}
... on ContentPage {
... on CodeDefinedPage {
title
url
}
}
}
}
link_text
}
}
}
system {
uid
}
title
}
}
}