From f0f285c8df1540dca5a287397ee390a7b3362615 Mon Sep 17 00:00:00 2001 From: Varun0157 Date: Sat, 11 May 2024 18:50:21 +0530 Subject: [PATCH] docs: added starts with, ends with, contains clauses to docs --- docs/zzapi-bundle-description.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/zzapi-bundle-description.md b/docs/zzapi-bundle-description.md index 8de90f4..caa7b95 100644 --- a/docs/zzapi-bundle-description.md +++ b/docs/zzapi-bundle-description.md @@ -165,6 +165,7 @@ Note that an assertion value can be a non-scalar, especially when matching a non Operators supported in the RHS are: * `$eq`, `$ne`, `$lt`, `$gt`, `$lte`, `$gte`: against the value * `$regex`: against the value, with `$options` like ignore-case +* `$sw`, `$ew`, `$co`: to check if the target starts with, ends with or contains a string * `$size`: for length of arrays and objects, or the length of the string if it is not an array * `$exists`: true|false, to check existance of a field * `$type`: string|number|object|array|null: to check the type of the field