We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc780b4 commit 97c3d88Copy full SHA for 97c3d88
firestore/test.firestore.js
@@ -856,7 +856,7 @@ describe("firestore", () => {
856
it("should handle other wheres", () => {
857
var citiesRef = db.collection("cities");
858
// [START example_filters]
859
- const nameQuery = citiesRef.where("state", "==", "CA");
+ const stateQuery = citiesRef.where("state", "==", "CA");
860
const populationQuery = citiesRef.where("population", "<", 100000);
861
const nameQuery = citiesRef.where("name", ">=", "San Francisco");
862
// [END example_filters]
0 commit comments