apoc.periodic.list

Details

Syntax

apoc.periodic.list() :: (name, delay, rate, done, cancelled)

Description

Returns a LIST<ANY> of all background jobs.

Return arguments

Name

Type

Description

name

STRING

The name of the job.

delay

INTEGER

The delay on the job.

rate

INTEGER

The rate of the job.

done

BOOLEAN

If the job has completed.

cancelled

BOOLEAN

If the job has been cancelled.

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();
Results
name delay rate done cancelled

"decrement"

0

0

TRUE

FALSE