generated from pascalmartineau/wp-skeleton
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m6s
31 lines
450 B
GraphQL
31 lines
450 B
GraphQL
query nodeByUri($uri: String!) {
|
|
nodeByUri(uri: $uri) {
|
|
__typename
|
|
id
|
|
breadcrumbs {
|
|
label
|
|
to
|
|
}
|
|
... on Page {
|
|
...ThePage
|
|
}
|
|
... on Post {
|
|
...TheArticle
|
|
}
|
|
... on Event {
|
|
...TheEvent
|
|
}
|
|
... on Location {
|
|
...TheLocation
|
|
}
|
|
... on Profile {
|
|
...TheProfile
|
|
}
|
|
... on Project {
|
|
...TheProject
|
|
}
|
|
... on Resource {
|
|
...TheResource
|
|
}
|
|
}
|
|
} |