-
Notifications
You must be signed in to change notification settings - Fork 69
v6 #141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v6 #141
Changes from 11 commits
8ed95c6
4716c31
d22970e
848e34f
e2dd39a
ed650e0
7deaea6
7ece3ec
4a77a21
f36edc1
7200d85
4b9b3af
fe47b50
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -31,10 +31,17 @@ class NodeCollection extends Collection { | |||||||||||||||||
| } | ||||||||||||||||||
|
|
||||||||||||||||||
| /** | ||||||||||||||||||
| * count(match, options) | ||||||||||||||||||
| * countDocuments(match, options) | ||||||||||||||||||
| */ | ||||||||||||||||||
| async count(match, options) { | ||||||||||||||||||
| return this.collection.count(match, options); | ||||||||||||||||||
| async countDocuments(match, options) { | ||||||||||||||||||
| return this.collection.countDocuments(match, options); | ||||||||||||||||||
| } | ||||||||||||||||||
|
|
||||||||||||||||||
| /** | ||||||||||||||||||
| * estimatedDocumentCount(match, options) | ||||||||||||||||||
| */ | ||||||||||||||||||
| async estimatedDocumentCount(match, options) { | ||||||||||||||||||
| return this.collection.estimatedDocumentCount(match, options); | ||||||||||||||||||
|
Comment on lines
+41
to
+44
|
||||||||||||||||||
| * estimatedDocumentCount(match, options) | |
| */ | |
| async estimatedDocumentCount(match, options) { | |
| return this.collection.estimatedDocumentCount(match, options); | |
| * estimatedDocumentCount(options) | |
| */ | |
| async estimatedDocumentCount(options) { | |
| return this.collection.estimatedDocumentCount(options); |
Uh oh!
There was an error while loading. Please reload this page.