Skip to content

Commit

Permalink
docs(firestore): the != query is supported now
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehardy committed Nov 10, 2020
1 parent 4b741a8 commit 6e59a74
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions docs/firestore/usage/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,6 @@ Cloud Firestore does not support the following types of queries:

- Queries with range filters on different fields, as described in the previous section.
- Logical OR queries. In this case, you should create a separate query for each OR condition and merge the query results in your app.
- Queries with a `!=` clause. In this case, you should split the query into a greater-than query and a less-than query.
For example, although the query clause `where("age", "!=", "30")` is not supported, you can get the same result set by
combining two queries, one with the clause `where("age", "<", "30")` and one with the clause `where("age", ">", 30)`.

## Writing Data

Expand Down

0 comments on commit 6e59a74

Please sign in to comment.