bson/testdata/crud/v1/read/aggregate-collation.json
2025-03-17 20:58:26 +01:00

40 lines
648 B
JSON

{
"data": [
{
"_id": 1,
"x": "ping"
}
],
"minServerVersion": "3.4",
"serverless": "forbid",
"tests": [
{
"description": "Aggregate with collation",
"operation": {
"name": "aggregate",
"arguments": {
"pipeline": [
{
"$match": {
"x": "PING"
}
}
],
"collation": {
"locale": "en_US",
"strength": 2
}
}
},
"outcome": {
"result": [
{
"_id": 1,
"x": "ping"
}
]
}
}
]
}