List Queued jobs that are currently suspended
1
//native
2
3
import * as wmill from "windmill-client@1";
4
5
export async function main(scriptPathExact?: string) {
6
return wmill.JobService.listQueue({
7
workspace: wmill.getWorkspace(),
8
suspend: true,
9
perPage: 50,
10
scriptPathExact,
11
});
12
}
13
import * as wmill from "https://deno.land/x/[email protected]/mod.ts";