apoc.periodic.list

Procedure

apoc.periodic.list() - returns a list of all background 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();
Table 1. Results
name delay rate done cancelled

"decrement"

0

0

TRUE

FALSE