Files
wp-headless/wp-content/themes/moonshine/app/graphql/NodebyUri.query.gql
Pascal Martineau f831c4e339
All checks were successful
Deployment / wordpress (push) Successful in 6s
Deployment / nuxt (push) Successful in 1m4s
feat: Replace eslint => oxlint + oxfmt
2026-02-01 21:54:16 -05:00

28 lines
374 B
GraphQL

fragment NodeSeo on NodeWithRankMathSeo {
seo {
title
description
robots
canonicalUrl
openGraph {
title
description
image {
url
}
}
}
}
query NodeByUri($uri: String!) {
nodeByUri(uri: $uri) {
__typename
... on Page {
...NodePage
}
... on NodeWithRankMathSeo {
...NodeSeo
}
}
}