/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
examples/cms-wordpress/src/queries/general/SeoQuery.ts
50 строк
1017 B
Bjørn Nyborg
examples: Updating WordPress example to Next 14 (#62447)
29 авг 2024, 02:09
Не верифицирован
29 авг 2024, 02:09
1207df6
Код
Авторство
О чём код?
import gql from "graphql-tag"; export const SeoQuery = gql` query SeoQuery( $slug: ID! $idType: ContentNodeIdTypeEnum $preview: Boolean = false ) { contentNode(id: $slug, idType: $idType, asPreview: $preview) { seo { canonical cornerstone focuskw metaDesc metaKeywords metaRobotsNofollow metaRobotsNoindex opengraphAuthor opengraphDescription opengraphModifiedTime opengraphPublishedTime opengraphPublisher opengraphSiteName opengraphTitle opengraphType opengraphUrl readingTime title twitterDescription twitterTitle opengraphImage { altText mediaDetails { height width } sourceUrl } twitterImage { altText mediaDetails { width height } sourceUrl } } } } `;