Skip to content

Commit d58b371

Browse files
authored
Merge pull request #463 from rachel-mack/DOCSP-48148
[GO] Correct and clarify Upsert options example
2 parents 24c75fe + 47e5d48 commit d58b371

File tree

1 file changed

+5
-13
lines changed
  • source/fundamentals/crud/write-operations

1 file changed

+5
-13
lines changed

source/fundamentals/crud/write-operations/upsert.txt

+5-13
Original file line numberDiff line numberDiff line change
@@ -96,20 +96,12 @@ The following example performs the following actions:
9696
.. io-code-block::
9797
:copyable: true
9898

99-
.. input::
99+
.. input:: /includes/fundamentals/code-snippets/CRUD/upsert.go
100+
:start-after: begin upsert
101+
:end-before: end upsert
100102
:language: go
101-
102-
filter := bson.D{{"species", "Ledebouria socialis"}, {"plant_id", 3}}
103-
update := bson.D{{"$set", bson.D{{"species", "Ledebouria socialis"}, {"plant_id", 3}, {"height", 8.3}}}}
104-
options.UpdateOne().SetUpsert(true)
105-
106-
result, err := coll.UpdateOne(context.TODO(), filter, update, opts)
107-
if err != nil {
108-
panic(err)
109-
}
110-
111-
fmt.Printf("Number of documents updated: %v\n", result.ModifiedCount)
112-
fmt.Printf("Number of documents upserted: %v\n", result.UpsertedCount)
103+
:emphasize-lines: 5
104+
:dedent:
113105

114106
.. output::
115107
:language: none

0 commit comments

Comments
 (0)