@eagleoutice/flowr - v2.10.1
    Preparing search index...
    interface StaticSliceQueryResult {
        ".meta": BaseQueryMeta;
        results: Record<
            string,
            | Omit<
                PipelineOutput<typeof DEFAULT_SLICING_PIPELINE>,
                keyof PipelineOutput<typeof DEFAULT_DATAFLOW_PIPELINE>,
            >
            | Omit<
                PipelineOutput<typeof DEFAULT_SLICE_WITHOUT_RECONSTRUCT_PIPELINE>,
                keyof PipelineOutput<typeof DEFAULT_DATAFLOW_PIPELINE>,
            >,
        >;
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of StaticSliceQueryResult
    Index

    Properties

    Properties

    ".meta": BaseQueryMeta
    results: Record<
        string,
        | Omit<
            PipelineOutput<typeof DEFAULT_SLICING_PIPELINE>,
            keyof PipelineOutput<typeof DEFAULT_DATAFLOW_PIPELINE>,
        >
        | Omit<
            PipelineOutput<typeof DEFAULT_SLICE_WITHOUT_RECONSTRUCT_PIPELINE>,
            keyof PipelineOutput<typeof DEFAULT_DATAFLOW_PIPELINE>,
        >,
    >

    only contains the results of the slice steps to not repeat ourselves, this does not contain the reconstruction if you set the SliceQuery#noReconstruction|noReconstruction flag.

    The keys are serialized versions of the used queries (i.e., the result of JSON.stringify). This implies that multiple slice queries with the same query configuration will not be re-executed.