We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6bc3dc commit 991ee87Copy full SHA for 991ee87
adminforth/types/Back.ts
@@ -1156,6 +1156,9 @@ export class Filters {
1156
static LIKE(field: string, value: any): IAdminForthSingleFilter {
1157
return { field, operator: AdminForthFilterOperators.LIKE, value };
1158
}
1159
+ static ILIKE(field: string, value: any): IAdminForthSingleFilter {
1160
+ return { field, operator: AdminForthFilterOperators.ILIKE, value };
1161
+ }
1162
static AND(
1163
...args: (IAdminForthSingleFilter | IAdminForthAndOrFilter | Array<IAdminForthSingleFilter | IAdminForthAndOrFilter>)[]
1164
): IAdminForthAndOrFilter {
0 commit comments