From 6e79c41ff01f904f2b5b01dc141586d8cdd24712 Mon Sep 17 00:00:00 2001 From: Lumpiness Date: Thu, 26 Sep 2024 11:25:47 +0300 Subject: [PATCH] Fixed webhook equals operator from $eq to $e --- admin_manual/webhook_listeners/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/webhook_listeners/index.rst b/admin_manual/webhook_listeners/index.rst index dd10f4cfa40..e99cbfffc59 100644 --- a/admin_manual/webhook_listeners/index.rst +++ b/admin_manual/webhook_listeners/index.rst @@ -31,7 +31,7 @@ If you would like to match events fired by a specific user, you can pass ``{ "us If you would like to enforce multiple criteria, you can simply pass multiple properties ``{ "event.tableId": 42, "event.rowId": 3 }`` -You can also use additional comparison operators (``$eq, $ne, $gt, $gte, $lt, $lte, $in, $nin``) as well as logical operators (``$and, $or, $not, $nor``). For example use ``{ "time" : { "$lt": 1711971024 } }`` to accept only events prior to April 1st 2024 and ``{ "time" : { "$not": { "$lt": 1711971024 } } }`` to accept events after April 1st 2024. +You can also use additional comparison operators (``$e, $ne, $gt, $gte, $lt, $lte, $in, $nin``) as well as logical operators (``$and, $or, $not, $nor``). For example use ``{ "time" : { "$lt": 1711971024 } }`` to accept only events prior to April 1st 2024 and ``{ "time" : { "$not": { "$lt": 1711971024 } } }`` to accept events after April 1st 2024. Speeding up webhook dispatch ~~~~~~~~~~~~~~~~~~~~~~~~~~~~