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

List Windmill Queued Jobs

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

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