getGenerator<Name extends "get" | "from" | "all" | "criterion" | "from-query">( name: Name,): { 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>[], >, >;}[Name] Type Parameters
- Name extends "get" | "from" | "all" | "criterion" | "from-query"