GraphWhere<T>
type GraphWhere<T> =
| RuleGroup<InstanceType<T>>
| Partial<Record<Extract<keyof InstanceType<T>, string>, unknown>>;
Defined in: rxdb-plugin-graph/src/graph-repository.interface.ts:26
图查询的节点过滤条件
Type Parameters
| Type Parameter |
|---|
T extends EntityType |
Remarks
仅支持当前实体表的字段(简单键值匹配或 RuleGroup),不支持关系字段; 需要关系过滤时请使用普通 find 查询