/
home
/
obinna
/
html
/
restaurants
/
vendor
/
mongodb
/
mongodb
/
tests
/
SpecTests
/
crud
/
Upload File
HOME
{ "runOn": [ { "maxServerVersion": "4.0.99" } ], "data": [ { "_id": 1, "x": 11 }, { "_id": 2, "x": 22 } ], "collection_name": "findOneAndUpdate_hint", "tests": [ { "description": "FindOneAndUpdate with hint string unsupported (client-side error)", "operations": [ { "object": "collection", "name": "findOneAndUpdate", "arguments": { "filter": { "_id": 1 }, "update": { "$inc": { "x": 1 } }, "hint": "_id_" }, "error": true } ], "expectations": [], "outcome": { "collection": { "data": [ { "_id": 1, "x": 11 }, { "_id": 2, "x": 22 } ] } } }, { "description": "FindOneAndUpdate with hint document unsupported (client-side error)", "operations": [ { "object": "collection", "name": "findOneAndUpdate", "arguments": { "filter": { "_id": 1 }, "update": { "$inc": { "x": 1 } }, "hint": { "_id": 1 } }, "error": true } ], "expectations": [], "outcome": { "collection": { "data": [ { "_id": 1, "x": 11 }, { "_id": 2, "x": 22 } ] } } } ] }