#include <mongocxx/v_noabi/mongocxx/model/update_one.hpp>
A MongoDB update operation that modifies a single document.
Public Member Functions | |
| 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. | |
| update_one (bsoncxx::v_noabi::document::view_or_value filter, pipeline const &update) | |
| Constructs an update operation that will modify a single document matching the filter. | |
| 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. | |
| update_one (v1::bulk_write::update_one op) | |
| Construct with the mongocxx::v1 equivalent. | |
| bsoncxx::v_noabi::stdx::optional< bsoncxx::v_noabi::array::view_or_value > const & | array_filters () const |
| Get array filters for this operation. | |
| update_one & | array_filters (bsoncxx::v_noabi::array::view_or_value array_filters) |
| Set array filters for this update operation. | |
| bsoncxx::v_noabi::stdx::optional< bsoncxx::v_noabi::document::view_or_value > const & | collation () const |
| Gets the collation option for this update operation. | |
| update_one & | collation (bsoncxx::v_noabi::document::view_or_value collation) |
| Sets the collation for this update operation. | |
| bsoncxx::v_noabi::document::view_or_value const & | filter () const |
| Gets the filter. | |
| bsoncxx::v_noabi::stdx::optional< v_noabi::hint > const & | hint () const |
| Gets the current hint. | |
| update_one & | hint (v_noabi::hint index_hint) |
| Sets the index to use for this operation. | |
| operator v1::bulk_write::update_one () const | |
| Convert to the mongocxx::v1 equivalent. | |
| bsoncxx::v_noabi::stdx::optional< bsoncxx::v_noabi::document::view_or_value > const & | sort () const |
| Get the current value of the sort option. | |
| update_one & | sort (bsoncxx::v_noabi::document::view_or_value sort) |
| Set the sort option. | |
| bsoncxx::v_noabi::document::view_or_value const & | update () const |
| Gets the update document. | |
| bsoncxx::v_noabi::stdx::optional< bool > const & | upsert () const |
| Gets the current value of the upsert option. | |
| update_one & | upsert (bool upsert) |
| Sets the upsert option. | |
Construct with the mongocxx::v1 equivalent.
|
inline |
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. |
|
inline |
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. |
|
inline |
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 {}. |
|
inline |
Get array filters for this operation.
|
inline |
Set array filters for this update operation.
| array_filters | Array representing filters determining which array elements to modify. |
|
inline |
Gets the collation option for this update operation.
|
inline |
Sets the collation for this update operation.
| collation | The new collation. |
|
inline |
Gets the filter.
|
inline |
Gets the current hint.
|
inline |
Sets the index to use for this operation.
| index_hint | Object representing the index to use. |
|
inlineexplicit |
Convert to the mongocxx::v1 equivalent.
|
inline |
Get the current value of the sort option.
|
inline |
Set the sort option.
|
inline |
Gets the update document.
|
inline |
Gets the current value of the upsert option.
|
inline |
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. |