Struct CountOptions
Fields
Name | Type | Description |
collation
|
std.typecons.Nullable!(vibe.db.mongo.collection.Collation) | Collation allows users to specify language-specific rules for string
comparison, such as rules for letter-case and accent marks.
|
hint
|
std.typecons.Nullable!(vibe.data.bson.Bson) | The index to use. Specify either the index name as a string or the index
key pattern.
|
limit
|
std.typecons.Nullable!(long) | The maximum number of documents to return.
|
maxTimeMS
|
std.typecons.Nullable!(long) | The maximum amount of time to allow the query to run.
|
readConcern
|
std.typecons.Nullable!(vibe.db.mongo.collection.ReadConcern) | Specifies the read concern. Only compatible with a write stage. (e.g.
$out , $merge )
|
skip
|
std.typecons.Nullable!(long) | The number of documents to skip before returning.
|
Methods
Name | Description |
maxTime
(d)
|
The maximum amount of time to allow the query to run.
|