From 340b647f1f9f2a9ecbdbacbaef05efd21684776f Mon Sep 17 00:00:00 2001 From: eAlie Date: Tue, 8 Dec 2020 22:17:16 +0000 Subject: [PATCH] Updated Readme with `Where` clause conditions --- .github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index db9ecad..3610e59 100644 --- a/.github/README.md +++ b/.github/README.md @@ -130,7 +130,7 @@ If more specific queries need to be performed, you can use the `query` function const allDocumentsWithTest = firestore.query("FirstCollection").Where("name", "==", "Test!").Execute(); ``` -The `Where` function can take other operators too: `==`, `<`, `<=`, `>`, `>=`, `contains`, `contains_any`, `in`. +The `Where` function can take other operators too: `==`, `!=`, `<`, `<=`, `>`, `>=`, `contains_any`, `array-contains-any`, `in`, `not-in`. Queries looking for `null` values can also be given: ```javascript