apoc.periodic.list
Procedure APOC Core
apoc.periodic.list - list all jobs
Signature
apoc.periodic.list() :: (name :: STRING?, delay :: INTEGER?, rate :: INTEGER?, done :: BOOLEAN?, cancelled :: BOOLEAN?)
Output parameters
Name | Type |
---|---|
name |
STRING? |
delay |
INTEGER? |
rate |
INTEGER? |
done |
BOOLEAN? |
cancelled |
BOOLEAN? |
Usage Examples
While the example from apoc.periodic.countdown is in progress, we’ll see the following output from this procedure:
CALL apoc.periodic.list();
name | delay | rate | done | cancelled |
---|---|---|---|---|
"decrement" |
0 |
0 |
TRUE |
FALSE |