make operators deep

This commit is contained in:
Pedro Guzman
2025-06-18 15:37:26 +02:00
parent ebe02a3836
commit 9043e534ce
@@ -46,9 +46,9 @@ type ExtractFiltersOperators<
} }
type RemoteQueryFilterOperators<T> = { type RemoteQueryFilterOperators<T> = {
$or?: T[] $or?: (T & RemoteQueryFilterOperators<T>)[]
$and?: T[] $and?: (T & RemoteQueryFilterOperators<T>)[]
$not?: T $not?: T & RemoteQueryFilterOperators<T>
} }
/** /**