PHP Classes

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

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

Contents

Class file image Download
{ "data": [ { "_id": 1, "x": 11 }, { "_id": 2, "x": 22 }, { "_id": 3, "x": 33 } ], "tests": [ { "description": "Estimated document count", "operation": { "name": "estimatedDocumentCount", "arguments": {} }, "outcome": { "result": 3 } }, { "description": "Count documents without a filter", "operation": { "name": "countDocuments", "arguments": { "filter": {} } }, "outcome": { "result": 3 } }, { "description": "Count documents with a filter", "operation": { "name": "countDocuments", "arguments": { "filter": { "_id": { "$gt": 1 } } } }, "outcome": { "result": 2 } }, { "description": "Count documents with skip and limit", "operation": { "name": "countDocuments", "arguments": { "filter": {}, "skip": 1, "limit": 3 } }, "outcome": { "result": 2 } }, { "description": "Deprecated count without a filter", "operation": { "name": "count", "arguments": { "filter": {} } }, "outcome": { "result": 3 } }, { "description": "Deprecated count with a filter", "operation": { "name": "count", "arguments": { "filter": { "_id": { "$gt": 1 } } } }, "outcome": { "result": 2 } }, { "description": "Deprecated count with skip and limit", "operation": { "name": "count", "arguments": { "filter": {}, "skip": 1, "limit": 3 } }, "outcome": { "result": 2 } } ] }