From 3bd411e07e557c620c858b0e46c77236a54fbb0e Mon Sep 17 00:00:00 2001 From: paanSinghCoder Date: Wed, 25 Mar 2026 16:40:17 +0530 Subject: [PATCH] feat (rql): add ilike and notilike support --- rql/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rql/parser.go b/rql/parser.go index a820b3f..e14a0ca 100644 --- a/rql/parser.go +++ b/rql/parser.go @@ -9,7 +9,7 @@ import ( ) var validNumberOperations = []string{"eq", "neq", "gt", "lt", "gte", "lte"} -var validStringOperations = []string{"eq", "neq", "like", "in", "notin", "notlike", "empty", "notempty"} +var validStringOperations = []string{"eq", "neq", "like", "ilike", "in", "notin", "notlike", "notilike", "empty", "notempty"} var validBoolOperations = []string{"eq", "neq"} var validDatetimeOperations = []string{"eq", "neq", "gt", "lt", "gte", "lte"}