MongoDB C++ Driver
mongocxx-3.10.2
|
Class representing a MongoDB update operation that modifies a single document. More...
#include <update_one.hpp>
Public Member Functions | |
const bsoncxx::v_noabi::document::view_or_value & | filter () const |
Gets the filter. More... | |
const bsoncxx::v_noabi::document::view_or_value & | update () const |
Gets the update document. More... | |
update_one & | collation (bsoncxx::v_noabi::document::view_or_value collation) |
Sets the collation for this update operation. More... | |
const stdx::optional< bsoncxx::v_noabi::document::view_or_value > & | collation () const |
Gets the collation option for this update operation. More... | |
update_one & | hint (mongocxx::v_noabi::hint index_hint) |
Sets the index to use for this operation. More... | |
const stdx::optional< mongocxx::v_noabi::hint > & | hint () const |
Gets the current hint. More... | |
update_one & | upsert (bool upsert) |
Sets the upsert option. More... | |
const stdx::optional< bool > & | upsert () const |
Gets the current value of the upsert option. More... | |
update_one & | array_filters (bsoncxx::v_noabi::array::view_or_value array_filters) |
Set array filters for this update operation. More... | |
const stdx::optional< bsoncxx::v_noabi::array::view_or_value > & | array_filters () const |
Get array filters for this operation. More... | |
update_one (bsoncxx::v_noabi::document::view_or_value filter, bsoncxx::v_noabi::document::view_or_value update) | |
Constructs an update operation that will modify a single document matching the filter. More... | |
update_one (bsoncxx::v_noabi::document::view_or_value filter, const pipeline &update) | |
Constructs an update operation that will modify a single document matching the filter. More... | |
update_one (bsoncxx::v_noabi::document::view_or_value filter, std::initializer_list< _empty_doc_tag > update) | |
Constructs an update operation that will modify a single document matching the filter. More... | |
Class representing a MongoDB update operation that modifies a single document.
mongocxx::v_noabi::model::update_one::update_one | ( | bsoncxx::v_noabi::document::view_or_value | filter, |
bsoncxx::v_noabi::document::view_or_value | update | ||
) |
Constructs an update operation that will modify a single document matching the filter.
filter | Document representing the criteria for applying the update. |
update | Document representing the modifications to be applied to the matching document. |
mongocxx::v_noabi::model::update_one::update_one | ( | bsoncxx::v_noabi::document::view_or_value | filter, |
const pipeline & | update | ||
) |
Constructs an update operation that will modify a single document matching the filter.
filter | Document representing the criteria for applying the update. |
update | Pipeline representing the modifications to be applied to the matching document. |
mongocxx::v_noabi::model::update_one::update_one | ( | bsoncxx::v_noabi::document::view_or_value | filter, |
std::initializer_list< _empty_doc_tag > | update | ||
) |
Constructs an update operation that will modify a single document matching the filter.
filter | Document representing the criteria for applying the update. |
update | Supports the empty update {}. |
const stdx::optional<bsoncxx::v_noabi::array::view_or_value>& mongocxx::v_noabi::model::update_one::array_filters | ( | ) | const |
Get array filters for this operation.
update_one& mongocxx::v_noabi::model::update_one::array_filters | ( | bsoncxx::v_noabi::array::view_or_value | array_filters | ) |
Set array filters for this update operation.
array_filters | Array representing filters determining which array elements to modify. |
const stdx::optional<bsoncxx::v_noabi::document::view_or_value>& mongocxx::v_noabi::model::update_one::collation | ( | ) | const |
Gets the collation option for this update operation.
update_one& mongocxx::v_noabi::model::update_one::collation | ( | bsoncxx::v_noabi::document::view_or_value | collation | ) |
Sets the collation for this update operation.
collation | The new collation. |
const bsoncxx::v_noabi::document::view_or_value& mongocxx::v_noabi::model::update_one::filter | ( | ) | const |
Gets the filter.
const stdx::optional<mongocxx::v_noabi::hint>& mongocxx::v_noabi::model::update_one::hint | ( | ) | const |
Gets the current hint.
update_one& mongocxx::v_noabi::model::update_one::hint | ( | mongocxx::v_noabi::hint | index_hint | ) |
Sets the index to use for this operation.
index_hint | Object representing the index to use. |
const bsoncxx::v_noabi::document::view_or_value& mongocxx::v_noabi::model::update_one::update | ( | ) | const |
Gets the update document.
const stdx::optional<bool>& mongocxx::v_noabi::model::update_one::upsert | ( | ) | const |
Gets the current value of the upsert option.
update_one& mongocxx::v_noabi::model::update_one::upsert | ( | bool | upsert | ) |
Sets the upsert option.
When upsert is false
, if no document matches the filter, update does nothing. However, by specifying upsert as true
, this operation either updates a matching document or inserts a new document using the update specification if no matching document exists. By default upsert is false
.
upsert | If set to true , creates a new document when no document matches the query criteria. The server side default is false , which does not insert a new document if a match is not found. |