generators: {
    all: (
        data: FlowrAnalysisProvider,
    ) => Promise<
        FlowrSearchElements<
            ParentInformation,
            FlowrSearchElement<ParentInformation>[],
        >,
    >;
    criterion: (
        input: FlowrAnalysisProvider,
        args: { criterion: SlicingCriteria },
    ) => Promise<
        FlowrSearchElements<
            ParentInformation,
            FlowrSearchElement<ParentInformation>[],
        >,
    >;
    from: (
        _input: FlowrAnalysisProvider,
        args: {
            from:
                | FlowrSearchElement<ParentInformation>
                | FlowrSearchElement<ParentInformation>[];
        },
    ) => FlowrSearchElements<ParentInformation>;
    "from-query": (
        input: FlowrAnalysisProvider,
        args: { from: readonly Query[] },
    ) => Promise<
        FlowrSearchElements<
            ParentInformation,
            FlowrSearchElement<ParentInformation>[],
        >,
    >;
    get: (
        input: FlowrAnalysisProvider,
        __namedParameters: { filter: FlowrSearchGetFilter },
    ) => Promise<
        FlowrSearchElements<
            ParentInformation,
            FlowrSearchElement<ParentInformation>[],
        >,
    >;
} = ...

All supported generators!

Type declaration