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