Framework
UniqueWhere<T>
Type Alias: UniqueWhere<T>
type UniqueWhere<T> =
| {
id: string;
}
| Partial<Pick<T, keyof T & string>>;Unique where clause - by id or unique fields.
Type Parameters
| Type Parameter |
|---|
T |
Robo.jstype UniqueWhere<T> =
| {
id: string;
}
| Partial<Pick<T, keyof T & string>>;Unique where clause - by id or unique fields.
| Type Parameter |
|---|
T |