bunqueue v2.8 API referenceall versions · guide
bunqueue
    Preparing search index...

    Interface JobNode<T>

    JobNode - BullMQ v5 compatible result from adding a flow. Contains the job and its children nodes.

    interface JobNode<T = unknown> {
        children?: JobNode<T>[];
        job: Job<T>;
    }

    Type Parameters

    • T = unknown
    Index
    children?: JobNode<T>[]

    Child nodes (if any)

    job: Job<T>

    The job instance