PHP Classes

File: vendor/mongodb/mongodb/tests/Collection/spec-tests/read/aggregate-out.json

Recommend this page to a friend!
  Classes of walid laggoune   MongoDB Queue PHP Query Execute   vendor/mongodb/mongodb/tests/Collection/spec-tests/read/aggregate-out.json   Download  
File: vendor/mongodb/mongodb/tests/Collection/spec-tests/read/aggregate-out.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: 2,150 bytes
 

Contents

Class file image Download
{ "data": [ { "_id": 1, "x": 11 }, { "_id": 2, "x": 22 }, { "_id": 3, "x": 33 } ], "minServerVersion": "2.6", "tests": [ { "description": "Aggregate with $out", "operation": { "name": "aggregate", "arguments": { "pipeline": [ { "$sort": { "x": 1 } }, { "$match": { "_id": { "$gt": 1 } } }, { "$out": "other_test_collection" } ], "batchSize": 2 } }, "outcome": { "result": [ { "_id": 2, "x": 22 }, { "_id": 3, "x": 33 } ], "collection": { "name": "other_test_collection", "data": [ { "_id": 2, "x": 22 }, { "_id": 3, "x": 33 } ] } } }, { "description": "Aggregate with $out and batch size of 0", "operation": { "name": "aggregate", "arguments": { "pipeline": [ { "$sort": { "x": 1 } }, { "$match": { "_id": { "$gt": 1 } } }, { "$out": "other_test_collection" } ], "batchSize": 0 } }, "outcome": { "result": [ { "_id": 2, "x": 22 }, { "_id": 3, "x": 33 } ], "collection": { "name": "other_test_collection", "data": [ { "_id": 2, "x": 22 }, { "_id": 3, "x": 33 } ] } } } ] }