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 2e84dcc commit ac81c69Copy full SHA for ac81c69
snippets/firestore-next/test-firestore/ends_with.js
@@ -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