fix: correct uid

This commit is contained in:
Arvid Norlin
2024-04-08 11:37:09 +02:00
parent de025fc889
commit dc9acb0a6a
3 changed files with 24 additions and 2 deletions

View File

@@ -17,9 +17,15 @@ query GetNavigationMyPages {
... on CodeDefinedPage {
title
url
system {
uid
}
}
... on ContentPage {
title
system {
uid
}
}
}
}
@@ -32,10 +38,16 @@ query GetNavigationMyPages {
node {
... on ContentPage {
title
system {
uid
}
}
... on CodeDefinedPage {
title
url
system {
uid
}
}
}
}