Entity
    Preparing search index...

    Type Alias NonNullableSelectedFields<TFields, TSelectedFields>

    NonNullableSelectedFields: TSelectedFields & NonNullableKeys<TFields>

    Set of selected fields that are non-nullable, which can be used for search fields that require non-nullable fields. To use a nullable field as a search field, use an EntityLoaderSearchFieldSQLFragmentFnSpecification with appropriate SQL to handle null values, such as COALESCE(field_name, '') to treat nulls as empty strings for searching.

    Type Parameters

    • TFields extends Record<string, any>
    • TSelectedFields extends keyof TFields