make operators deep
This commit is contained in:
@@ -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>
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user