1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
data:
-
-
-
-
-
minServerVersion: '3.4'
# See: https://docs.mongodb.com/master/reference/collation/#collation-document
tests:
-
description: "BulkWrite with delete operations and collation"
operation:
name: "bulkWrite"
arguments:
requests:
-
# matches two documents but deletes one
name: "deleteOne"
arguments:
filter:
collation:
-
# matches the remaining document and deletes it
name: "deleteOne"
arguments:
filter:
collation:
-
# matches two documents and deletes them
name: "deleteMany"
arguments:
filter:
collation:
options:
outcome:
result:
deletedCount: 4
insertedCount: 0
insertedIds:
matchedCount: 0
modifiedCount: 0
upsertedCount: 0
upsertedIds:
collection:
data:
-
-
description: "BulkWrite with update operations and collation"
operation:
name: "bulkWrite"
arguments:
requests:
-
# matches only one document due to strength and updates
name: "updateMany"
arguments:
filter:
update:
collation:
-
# matches one document and updates
name: "updateOne"
arguments:
filter:
update:
collation:
-
# matches no document due to strength and upserts
name: "replaceOne"
arguments:
filter:
replacement:
upsert: true
collation:
-
# matches two documents and updates
name: "updateMany"
arguments:
filter:
update:
collation:
options:
outcome:
result:
deletedCount: 0
insertedCount: 0
insertedIds:
matchedCount: 6
modifiedCount: 4
upsertedCount: 1
upsertedIds:
collection:
data:
-
-
-
-
-
-