TypedIncludePattern: {
    [K in keyof T]?:
        | boolean
        | NestedFilterOptions<UnwrapArray<NonNullable<T[K]>>>
}

Type-safe include pattern with support for nested includes, pagination, and filtering Fully recursive - matches the structure of IncludePattern from core-types Defaults to any when no type parameter is provided for backward compatibility

Type Parameters

  • T = any