dyna-record
    Preparing search index...

    Type Alias SearchableRelationshipProperties<T>

    SearchableRelationshipProperties: {
        [K in RelationshipProperties<T>]: [
            SearchableAttributeKeys<RelationshipTarget<T, K>>,
        ] extends [never]
            ? never
            : K
    }[RelationshipProperties<T>]

    Relationship property names of T whose target entity declares a Searchable attribute. These are the valid in: values of the parent search surfaces, and the parent's searchable adjacency defines its scoped index membership.

    Type Parameters