Skip to content

Commit ac81c69

Browse files
committed
run snippets
1 parent 2e84dcc commit ac81c69

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// This snippet file was generated by processing the source file:
2+
// ./firestore-next/test.firestore.js
3+
//
4+
// To update the snippets in this file, edit the source and then run
5+
// 'npm run snippets'.
6+
7+
// [START ends_with_modular]
8+
const result = await execute(db.pipeline()
9+
.collection("inventory/devices/laptops")
10+
.select(
11+
field("name").endsWith("16 inch")
12+
.as("16InLaptops")
13+
)
14+
);
15+
// [END ends_with_modular]

0 commit comments

Comments
 (0)