Delete documents
Deletes collection documents
- Parameters
- Advanced call ?
Function DeleteDocuments(Val Connection, Val Collection, Val Deletions, Val Base = Undefined, Val Parameters = Undefined) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Connection | --dbc | String, Arbitrary | ✔ | Connection or connection string |
| Collection | --coll | String | ✔ | Collection name |
| Deletions | --deletes | Array of Structure | ✔ | Deletion array. See GetDocumentDeletionStructure |
| Base | --db | String | ✖ | Database name. Current database if not specified |
| Parameters | --params | Structure Of KeyAndValue | ✖ | Additional insert options |
Returns
Map Of KeyAndValue - Operation result
| Parameter | Description |
|---|---|
| addin_mode | Manual selection of external component connection mode (for 1C): Isolated, NotIsolated |
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
1C:Enterprise/OneScript code example
Address = "127.0.0.1:1234";
Login = "bayselonarrend";
Password = "12we...";
Base = "main";
ConnectionParams = New Structure("authSource", "admin");
ConnectionString = OPI_MongoDB.GenerateConnectionString(Address, , Login, Password, ConnectionParams);
Connection = OPI_MongoDB.CreateConnection(ConnectionString);
Collection = "new_collection";
Filter = New Structure("stringField,doubleField", "Text", 999);
Deletion = OPI_MongoDB.GetDocumentDeletionStructure(Filter, 1); // Array or single
Result = OPI_MongoDB.DeleteDocuments(Connection, Collection, Deletion, Base);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint mongodb DeleteDocuments \
--dbc "mongodb://bayselonarrend:12we3456!2154@127.0.0.1:27017/?authSource=admin" \
--coll "new_collection" \
--deletes "{'q':{'stringField':'Text','doubleField':'999'},'limit':'1'}" \
--db "main"
:: JSON data can also be passed as a path to a .json file
oint mongodb DeleteDocuments ^
--dbc "mongodb://bayselonarrend:12we3456!2154@127.0.0.1:27017/?authSource=admin" ^
--coll "new_collection" ^
--deletes "{'q':{'stringField':'Text','doubleField':'999'},'limit':'1'}" ^
--db "main"
Result
{
"result": true,
"data": {
"n": 1,
"ok": 1
}
}