List Suspended Jobs
One script reply has been approved by the moderators Verified

List Queued jobs that are currently suspended

Created by admin 1080 days ago
Submitted by admin Deno
Verified 225 days ago
1
import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
2

3
export async function main(scriptPathExact?: string) {
4
  return wmill.JobService.listQueue({
5
    workspace: wmill.getWorkspace(),
6
    suspend: true,
7
    perPage: 50,
8
    scriptPathExact,
9
  });
10
}
11