Entity
    Preparing search index...

    Type Alias EntityLoaderFieldNameConstructorFn<TFields, TSelectedFields>

    EntityLoaderFieldNameConstructorFn: (
        fieldName: TSelectedFields,
    ) => SQLFragment<TFields>

    Function to be used for constructing search fields based on field names. The function takes a field name and returns a SQLFragment that can be used in the search field portion.

    Type Parameters

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

    Type Declaration