File tree Expand file tree Collapse file tree 5 files changed +0
-18
lines changed
includes/usage-examples/code-snippets Expand file tree Collapse file tree 5 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -460,12 +460,6 @@ the MongoDB server manual page on :manual:`Aggregation
460460Additional Information
461461----------------------
462462
463- For runnable examples of the find operations, see the following usage
464- examples:
465-
466- - :ref:`golang-find-one`
467- - :ref:`golang-find-multiple`
468-
469463To learn more about the operations mentioned, see the following
470464guides:
471465
Original file line number Diff line number Diff line change 1- // begin find
21// Retrieves documents that match a query filter by using the Go driver
32package main
43
@@ -79,5 +78,3 @@ func main() {
7978 fmt .Printf ("%s\n " , output )
8079 }
8180}
82-
83- // end find
Original file line number Diff line number Diff line change 1- // begin find
21// Retrieves documents that match a query filter by using the Go driver
32package main
43
@@ -63,5 +62,3 @@ func main() {
6362 fmt .Printf ("%s\n " , output )
6463 }
6564}
66-
67- // end find
Original file line number Diff line number Diff line change 1- // begin findOne
21// Retrieves a document that matches a query filter by using the Go driver
32package main
43
@@ -76,5 +75,3 @@ func main() {
7675 }
7776 fmt .Printf ("%s\n " , output )
7877}
79-
80- // end findOne
Original file line number Diff line number Diff line change 1- // begin findOne
21// Retrieves a document that matches a query filter by using the Go driver
32package main
43
@@ -60,5 +59,3 @@ func main() {
6059 }
6160 fmt .Printf ("%s\n " , output )
6261}
63-
64- // end findOne
You can’t perform that action at this time.
0 commit comments