apoc.trigger.resume
Procedure APOC Core Deprecated
CALL apoc.trigger.resume(name) | it resumes the paused trigger
|
This procedure is not intended to be used in a cluster environment, and may act unpredictably. |
|
Please note that this procedure is deprecated. Use the following ones instead, which allow for better support in a cluster:
where |
Signature
apoc.trigger.resume(name :: STRING?) :: (name :: STRING?, query :: STRING?, selector :: MAP?, params :: MAP?, installed :: BOOLEAN?, paused :: BOOLEAN?)
Output parameters
| Name | Type |
|---|---|
name |
STRING? |
query |
STRING? |
selector |
MAP? |
params |
MAP? |
installed |
BOOLEAN? |
paused |
BOOLEAN? |
Enable Triggers
By default triggers are disabled.
We can enable them by setting the following property in apoc.conf:
apoc.trigger.enabled=true
apoc.trigger.refresh=60000
| Option Key | Value | Description |
|---|---|---|
apoc.trigger.enabled |
true/false, default false |
Enable/Disable the feature |
apoc.trigger.refresh |
number, default 60000 |
Interval in ms after which a replication check is triggered across all cluster nodes |