Convenience wrapper around find on the files collection
(filter: Filter<GridFSFile> = {}, options: FindOptions = {})
| 190 | |
| 191 | /** Convenience wrapper around find on the files collection */ |
| 192 | find(filter: Filter<GridFSFile> = {}, options: FindOptions = {}): FindCursor<GridFSFile> { |
| 193 | return this.s._filesCollection.find(filter, options); |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Returns a readable stream (GridFSBucketReadStream) for streaming the |
no outgoing calls