feat: project permalink using ID

This commit is contained in:
2025-09-16 10:01:26 -04:00
parent 28186c9141
commit cd2bfdfc0b
2 changed files with 25 additions and 4 deletions

View File

@@ -299,6 +299,12 @@ type Address {
"""State or province abbreviation"""
stateShort: String
"""Street name"""
streetName: String
"""Street number"""
streetNumber: String
}
"""
@@ -9260,7 +9266,7 @@ interface HierarchicalTermNode implements DatabaseIdentifier & HierarchicalNode
}
"""The Location type"""
type Location implements ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & Node & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & UniformResourceIdentifiable & WithAcfGroupPostLocation {
type Location implements ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & Node & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfGroupPostLocation {
"""
Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root).
"""
@@ -9467,7 +9473,7 @@ type Location implements ContentNode & DatabaseIdentifier & HierarchicalContentN
password: String
"""Connection between the Location type and the Location type"""
preview: LocationToPreviewConnectionEdge @deprecated(reason: "The "Location" Type is not publicly queryable and does not support previews. This field will be removed in the future.")
preview: LocationToPreviewConnectionEdge
"""The database id of the preview node"""
previewRevisionDatabaseId: Int
@@ -9593,7 +9599,7 @@ type LocationToPreviewConnectionEdge implements Edge & LocationConnectionEdge &
cursor: String
"""The node of the connection, without the edges"""
node: Location! @deprecated(reason: "The "Location" Type is not publicly queryable and does not support previews. This field will be removed in the future.")
node: Location!
}
"""Connection between the Location type and the Location type"""