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 b8556d3 commit 2e84dccCopy full SHA for 2e84dcc
firestore-next/test.firestore.js
@@ -2306,13 +2306,15 @@ describe("firestore-pipelines", () => {
2306
}
2307
2308
async function endsWithFunction() {
2309
+ // [START ends_with]
2310
const result = await execute(db.pipeline()
2311
.collection("inventory/devices/laptops")
2312
.select(
2313
field("name").endsWith("16 inch")
2314
.as("16InLaptops")
2315
)
2316
);
2317
+ // [END ends_with]
2318
console.log(result);
2319
2320
@@ -2598,4 +2600,4 @@ describe("firestore-pipelines", () => {
2598
2600
// [END vector_length]
2599
2601
2602
-});
2603
+});
0 commit comments