UNPKG

qlik-saas-api

Version:

Interact with Qlik Sense SaaS REST API

17 lines (16 loc) 570 B
export type ParsedCondition = { property: string; operation: string; value: string; }; /** * Convert custom search statements to JS statement string. * Custom search statements format/examples: * - id eq 123-123-123-13 * - name eq "some name" and description eq "something else" * * @param filter the actual filter string * @param baseObjPath the path of the origin object. This path will be included in the final JS statement * @returns string based JS statement */ export declare function parseFilter(filter: string, baseObjPath: string): string;