@triply/triplydb
    Preparing search index...

    Interface PipelineInfo

    interface PipelineInfo {
        createdAt: string;
        createdBy?: string;
        error?: ErrorResponse;
        id: string;
        jobs: PipelineJob[];
        owner?: string;
        progress: number;
        status: PipelineStatus;
    }
    Index
    createdAt: string

    When the pipeline was started.

    createdBy?: string

    Account that started the pipeline. Absent if that account has since been removed.

    error?: ErrorResponse

    Present when the pipeline finished unsuccessfully, describing why.

    id: string

    Identifier for this run, used to address it while it is going.

    jobs: PipelineJob[]

    One entry per query, each with its own status and progress.

    owner?: string

    Account the pipeline runs under. Absent if that account has since been removed.

    progress: number

    How far along the pipeline is, from 0 to 1.

    Where the run has got to — see PipelineStatus.