28 lines
376 B
GraphQL
28 lines
376 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
|
|
}
|
|
}
|
|
}
|