{ "description": "deleteMany-hint", "schemaVersion": "1.0", "runOnRequirements": [ { "minServerVersion": "4.3.4" } ], "createEntities": [ { "client": { "id": "client0", "observeEvents": [ "commandStartedEvent" ] } }, { "database": { "id": "database0", "client": "client0", "databaseName": "crud-v2" } }, { "collection": { "id": "collection0", "database": "database0", "collectionName": "DeleteMany_hint" } } ], "initialData": [ { "collectionName": "DeleteMany_hint", "databaseName": "crud-v2", "documents": [ { "_id": 1, "x": 11 }, { "_id": 2, "x": 22 }, { "_id": 3, "x": 33 } ] } ], "tests": [ { "description": "DeleteMany with hint string", "operations": [ { "object": "collection0", "name": "deleteMany", "arguments": { "filter": { "_id": { "$gt": 1 } }, "hint": "_id_" }, "expectResult": { "deletedCount": 2 } } ], "expectEvents": [ { "client": "client0", "events": [ { "commandStartedEvent": { "command": { "delete": "DeleteMany_hint", "deletes": [ { "q": { "_id": { "$gt": 1 } }, "hint": "_id_", "limit": 0 } ] } } } ] } ], "outcome": [ { "collectionName": "DeleteMany_hint", "databaseName": "crud-v2", "documents": [ { "_id": 1, "x": 11 } ] } ] }, { "description": "DeleteMany with hint document", "operations": [ { "object": "collection0", "name": "deleteMany", "arguments": { "filter": { "_id": { "$gt": 1 } }, "hint": { "_id": 1 } }, "expectResult": { "deletedCount": 2 } } ], "expectEvents": [ { "client": "client0", "events": [ { "commandStartedEvent": { "command": { "delete": "DeleteMany_hint", "deletes": [ { "q": { "_id": { "$gt": 1 } }, "hint": { "_id": 1 }, "limit": 0 } ] } } } ] } ], "outcome": [ { "collectionName": "DeleteMany_hint", "databaseName": "crud-v2", "documents": [ { "_id": 1, "x": 11 } ] } ] } ] }