Files
cultureat-bak/wp-content/themes/ccat/app/graphql/nodeByUri.gql
Pascal Martineau 299213d5e9
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m6s
refactor: membership => profile
2025-09-24 16:01:46 -04:00

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
}
}
}