Files
cultureat-bak/wp-content/themes/ccat/app/graphql/nodeByUri.gql
Pascal Martineau 346890c088
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 6m3s
refactor: better project structure
2025-09-17 08:41:42 -04:00

31 lines
456 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 Membership {
...TheMembership
}
... on Project {
...TheProject
}
... on Resource {
...TheResource
}
}
}