带一般过滤条件环路检测(filtered circle detection)
概述
带一般过滤条件环路检测(filtered circle detection)目的是寻找图中所有满足过滤条件的环路。
适用场景
带一般过滤条件的环路检测(filtered circle detection)算法适用于金融风控中循环转账检测、反洗钱,网络路由中异常链接检测,企业担保圈贷款风险识别等场景。
参数说明
参数 |
是否必选 |
说明 |
类型 |
取值范围 |
默认值 |
---|---|---|---|---|---|
sources |
否 |
查询的起始节点ID集合 |
String |
- |
标准csv格式,ID之间以英文逗号分隔,例如:“Alice,Nana” |
n |
否 |
枚举满足过滤条件的圈的个数上限 |
Int |
[1,100000] |
100 |
statistics |
否 |
是否输出所有满足过滤条件的圈的个数 |
Boolean |
true或false |
false |
batch_number |
否 |
批量处理的起始节点的个数 |
Int |
[1,1000] |
10 |
output_format |
否 |
输出结果的格式 |
String |
vertexId,edgeId或edgeObject |
edgeObject |
filters |
是 |
过滤条件列表,数组的每个元素分别对应每一层要做的查询和过滤条件。 |
Json |
- |
- |