feat: Setup GraphQL with dynamic node routing logic

This commit is contained in:
2026-03-18 23:21:05 -04:00
parent 1838d59382
commit 3b72a16f86
9 changed files with 1291 additions and 73 deletions

View File

@@ -0,0 +1,8 @@
query NodeByUri($uri: String!) {
nodeByUri(uri: $uri) @nonNull {
__typename
... on Page {
...NodePage
}
}
}