EdgeFilterOptionsFull<EdgeProperties>
Defined in: rxdb-plugin-graph/src/graph-repository.interface.ts:47
边过滤条件(权重 + 属性)
Extends
EdgeFilterOptionsWithWeight.EdgeFilterOptionsWithProperties<EdgeProperties>
Type Parameters
| Type Parameter | Default type |
|---|---|
EdgeProperties | Record<string, string | number | boolean> |
Properties
properties?
optional properties: EdgeProperties;
Defined in: rxdb-plugin-graph/src/graph-repository.interface.ts:41
边属性过滤(简单键值匹配)
Example
{ category: 'business', type: 'partner' }
Remarks
仅支持相等匹配,不支持范围/模糊查询
Inherited from
EdgeFilterOptionsWithProperties.properties
weight?
optional weight: object;
Defined in: rxdb-plugin-graph/src/graph-repository.interface.ts:25
权重范围过滤
max?
optional max: number;
min?
optional min: number;
Example
{ min: 1, max: 10 }