simplified filter compiling - merged into one compiler

This commit is contained in:
Jan Prochazka
2024-08-19 16:50:19 +02:00
parent 4bdcf219f2
commit b9ad63c926
5 changed files with 0 additions and 475 deletions

View File

@@ -1,8 +1,6 @@
export type FilterParserCompilerType = 'sqlTree' | 'mongoCondition' | 'datetime';
export interface FilterBehaviour {
compilerType: FilterParserCompilerType;
supportEquals?: boolean;
supportStringInclusion?: boolean;
supportEmpty?: boolean;