From cd724027fb3b0ac7b0ca962961cad55a804e5885 Mon Sep 17 00:00:00 2001 From: Zach Young <1951403+omnizach@users.noreply.github.com> Date: Fri, 3 Jan 2025 08:04:36 -0500 Subject: [PATCH] Update index.md (#561) --- docs/api/actual-ql/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/actual-ql/index.md b/docs/api/actual-ql/index.md index a36862796..367298f78 100644 --- a/docs/api/actual-ql/index.md +++ b/docs/api/actual-ql/index.md @@ -66,7 +66,7 @@ q('transactions') .select('*'); ``` -The `$gte` operator on `date` returns transactions on or after `2021-01-01`. Available operators are `$eq`, `$lt`, `$lte`, `$gt`, `$gte`, and `$like`. +The `$gte` operator on `date` returns transactions on or after `2021-01-01`. Available operators are `$eq`, `$lt`, `$lte`, `$gt`, `$gte`, `$ne`, `$oneof`, `$regex`, `$like`, and `$notlike`. If you pass an array to a field, it will combine the conditions with `$and`: