Files
headless-2026-03/wp-content/themes/headless/app/pages/[...uri].gql
2026-03-26 14:56:38 -04:00

14 lines
217 B
GraphQL

query NodeByUri($uri: String!) {
nodeByUri(uri: $uri) @nonNull {
__typename
... on Page {
...NodePage
}
... on NodeWithRankMathSeo {
seo @nonNull {
...NodeSeo
}
}
}
}