PHP Classes

File: vendor/mongodb/mongodb/tests/SpecTests/crud/bulkWrite-arrayFilters.json

Recommend this page to a friend!
  Classes of walid laggoune   MongoDB Queue PHP Query Execute   vendor/mongodb/mongodb/tests/SpecTests/crud/bulkWrite-arrayFilters.json   Download  
File: vendor/mongodb/mongodb/tests/SpecTests/crud/bulkWrite-arrayFilters.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: MongoDB Queue PHP Query Execute
Query and execute multiple queries using MongoDB
Author: By
Last change:
Date: 4 years ago
Size: 3,338 bytes
 

Contents

Class file image Download
{ "runOn": [ { "minServerVersion": "3.5.6" } ], "data": [ { "_id": 1, "y": [ { "b": 3 }, { "b": 1 } ] }, { "_id": 2, "y": [ { "b": 0 }, { "b": 1 } ] } ], "collection_name": "test", "database_name": "crud-tests", "tests": [ { "description": "BulkWrite with arrayFilters", "operations": [ { "name": "bulkWrite", "arguments": { "requests": [ { "name": "updateOne", "arguments": { "filter": {}, "update": { "$set": { "y.$[i].b": 2 } }, "arrayFilters": [ { "i.b": 3 } ] } }, { "name": "updateMany", "arguments": { "filter": {}, "update": { "$set": { "y.$[i].b": 2 } }, "arrayFilters": [ { "i.b": 1 } ] } } ], "options": { "ordered": true } }, "result": { "deletedCount": 0, "insertedCount": 0, "insertedIds": {}, "matchedCount": 3, "modifiedCount": 3, "upsertedCount": 0, "upsertedIds": {} } } ], "expectations": [ { "command_started_event": { "command": { "update": "test", "updates": [ { "q": {}, "u": { "$set": { "y.$[i].b": 2 } }, "arrayFilters": [ { "i.b": 3 } ] }, { "q": {}, "u": { "$set": { "y.$[i].b": 2 } }, "multi": true, "arrayFilters": [ { "i.b": 1 } ] } ], "ordered": true }, "command_name": "update", "database_name": "crud-tests" } } ], "outcome": { "collection": { "data": [ { "_id": 1, "y": [ { "b": 2 }, { "b": 2 } ] }, { "_id": 2, "y": [ { "b": 0 }, { "b": 2 } ] } ] } } } ] }