feat: add initial my pages navigation

This commit is contained in:
Arvid Norlin
2024-04-05 09:34:12 +02:00
parent a35daee3a6
commit e5876e4e14
4 changed files with 81 additions and 21 deletions

View File

@@ -0,0 +1,29 @@
query GetNavigationMyPages {
all_navigation_my_pages {
items {
items {
... on NavigationMyPagesItemsItem {
__typename
item {
pageConnection {
edges {
node {
... on CodeDefinedPage {
title
}
... on ContentPage {
title
}
}
}
}
link_text
}
}
}
system {
uid
}
}
}
}