| async with await collection.watch(...) as stream: | ... |
|
| await collection.insert_one(...) |
|
| await collection.insert_many(...) |
|
| await collection.replace_one(...) |
|
| await collection.update_one(...) |
|
| await collection.update_many(...) |
|
| |
| await collection.delete_one(...) |
|
| await collection.delete_many(...) |
|
| await collection.find_one(...) |
|
estimated_document_count()
| await collection.estimated_document_count() |
|
| await collection.count_documents(...) |
|
| await collection.create_index(...) |
|
| await collection.create_indexes(...) |
|
| await collection.drop_index(...) |
|
| await collection.drop_indexes() |
|
| await collection.list_indexes() |
|
| await collection.index_information() |
|
| await collection.list_search_indexes() |
|
| await collection.create_search_index(...) |
|
| await collection.create_search_indexes(...) |
|
| await collection.drop_search_index(...) |
|
| await collection.update_search_index(...) |
|
| await collection.options() |
|
| async for doc in await collection.aggregate(...): | ... |
|
| async for batch in await collection.aggregate_raw_batches(...): | ... |
|
| await collection.rename(...) |
|
| await collection.distinct(...) |
|
| await collection.find_one_and_delete(...) |
|
| await collection.find_one_and_replace(...) |
|
| await collection.find_one_and_update(...) |
|