import type { Queue } from 'bullmq'; export async function findJobByPrefix( queue: Queue, matcher: string ) { const delayed = await queue.getJobs('delayed'); return delayed.find((job) => job.opts.jobId?.startsWith(matcher)); }