apoc.custom
| 限定名称 | 类型 |
|---|---|
apoc.custom.declareFunction(signature, statement, forceSingle, description) - 注册一个自定义 Cypher 函数 |
过程 已弃用 |
apoc.custom.declareProcedure(signature, statement, mode, description) - 注册一个自定义 Cypher 存储过程 |
过程 已弃用 |
apoc.custom.dropAll(databaseName) - 最终删除所有先前添加的自定义存储过程/函数,并返回相关信息 |
过程 |
apoc.custom.dropFunction(name, databaseName) - 最终删除指定的自定义函数 |
过程 |
apoc.custom.dropProcedure(name, databaseName) - 最终删除指定的自定义存储过程 |
过程 |
apoc.custom.installFunction(signature, statement, databaseName, forceSingle, description) - 最终注册一个自定义 Cypher 函数 |
过程 |
apoc.custom.installProcedure(signature, statement, databaseName, mode, description) - 最终注册一个自定义 Cypher 存储过程 |
过程 |
apoc.custom.list() - 提供已注册的自定义过程/函数列表 |
过程 |
apoc.custom.show(databaseName) - 提供已注册的自定义存储过程/函数列表 |
过程 |
apoc.custom.removeFunction(name, type) - 移除指定的自定义函数 |
过程 已弃用 |
apoc.custom.removeProcedure(name) - 移除指定的自定义存储过程 |
过程 已弃用 |