Files
cultureat-bak/wp-content/themes/ccat/app/composables/useNodeByUri.gql
Pascal Martineau 4c3f0a26bf
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 57s
feat: Routes de l'arborescence
2025-09-15 14:38:14 -04:00

27 lines
411 B
GraphQL

query nodeByUri($uri: String!) {
nodeByUri(uri: $uri) {
__typename
id
... on Page {
...ThePage
}
... on Post {
...TheArticle
}
... on Event {
...TheEvent
}
... on Location {
...TheLocation
}
... on Membership {
...TheMembership
}
... on Project {
...TheProject
}
... on Resource {
...TheResource
}
}
}