//native
import * as wmill from "windmill-client@1";
export async function main(
scriptPathExact?: string,
onlySuspendedJobs: boolean
) {
return wmill.JobService.listQueue({
workspace: wmill.getWorkspace(),
suspended: onlySuspendedJobs,
perPage: 50,
scriptPathExact,
});
}
Submitted by hugo989 7 days ago