All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ftl.data.mongo.method.$$MongoRepositoryUpdateDocumentMethodBodyTemplateftl Maven / Gradle / Ivy

There is a newer version: 0.11
Show newest version
<#include "../mongo-lib.javaftl">
<#-- -------------------------------------------------------------------------------------------------------- -->
${createBsonVar('filter', FILTER)}
<#-- -------------------------------------------------------------------------------------------------------- -->
final Document update = new Document("$set", ${DOCUMENT_CONVERTER}.toDB(${DOCUMENT}, false));
<#-- -------------------------------------------------------------------------------------------------------- -->
final Publisher result = collection
        .updateMany(
                filter,
                update,
                new UpdateOptions().upsert(${UPSERT?c})
        );
<@returnUpdateResult />




© 2015 - 2024 Weber Informatics LLC | Privacy Policy