apoc.custom.removeProcedure

This is the APOC Extended documentation.

APOC Extended is not supported by Neo4j. For the officially supported APOC Core, go to the APOC Core page.

Procedure Apoc Extended

apoc.custom.removeProcedure(name) - remove the targeted custom procedure

Signature

apoc.custom.removeProcedure(name :: STRING?) :: VOID

This procedure is not intended to be used in a cluster environment, and may act unpredictably.

Input parameters

Name Type Default

name

STRING?

null

Usage Examples

We can remove a custom procedure named powers, by running the following query:

CALL apoc.custom.removeProcedure("powers");