apoc.periodic.cancel
Syntax |
|
||
Description |
Cancels the given background job. |
||
Input arguments |
Name |
Type |
Description |
|
|
The name of the job to cancel. |
|
Return arguments |
Name |
Type |
Description |
|
|
The name of the job. |
|
|
|
The delay on the job. |
|
|
|
The rate of the job. |
|
|
|
If the job has completed. |
|
|
|
If the job has been cancelled. |
Usage Examples
If we want to cancel the job submitted by the example in apoc.periodic.repeat, we can run the following query:
CALL apoc.periodic.cancel("create-people");
name | delay | rate | done | cancelled |
---|---|---|---|---|
"create-people" |
0 |
0 |
TRUE |
TRUE |