From 1c02f5b3ee7e0c84f39af2c10516d87b8271f542 Mon Sep 17 00:00:00 2001 From: Southball <6523469+southball@users.noreply.github.com> Date: Sun, 15 Jan 2023 16:17:18 +0900 Subject: [PATCH] Update REST API docs --- .../noco-docs/content/en/developer-resources/rest-apis.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/noco-docs/content/en/developer-resources/rest-apis.md b/packages/noco-docs/content/en/developer-resources/rest-apis.md index 202004db11..738645d7de 100644 --- a/packages/noco-docs/content/en/developer-resources/rest-apis.md +++ b/packages/noco-docs/content/en/developer-resources/rest-apis.md @@ -221,6 +221,10 @@ Currently, the default value for {orgs} is noco. Users will be able to ch | btw | between | (colName,btw,val1,val2) | | nbtw | not between | (colName,nbtw,val1,val2) | | like | like | (colName,like,%name) | +| allof | includes all of | (colName,allof,val1,val2,...) | +| anyof | includes any of | (colName,anyof,val1,val2,...) | +| nallof | does not include all of (includes none or some, but not all of) | (colName,nallof,val1,val2,...) | +| nanyof | does not include any of (includes none of) | (colName,nanyof,val1,val2,...) | ## Logical Operators