(db, database, document)
| 28 | # DEALINGS IN THE SOFTWARE. |
| 29 | # }}} |
| 30 | def insert_many(db, database, document): |
| 31 | db[database].insert_many(document) |
| 32 | |
| 33 | def aggregate(db, database, pipeline): |
| 34 | result = [] |
nothing calls this directly
no outgoing calls
no test coverage detected