Packages

o

org.mongodb.scala.model

UpdateOneModel

object UpdateOneModel

A model describing an update to at most one document that matches the query filter. The update to apply must include only update operators.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UpdateOneModel
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(filter: Bson, update: Seq[Bson], updateOptions: UpdateOptions): UpdateOneModel[Nothing]

    Construct a new instance.

    Construct a new instance.

    filter

    a document describing the query filter.

    update

    a pipeline describing the update, which may not be null.

    updateOptions

    the options to apply

    returns

    the new UpdateOneModel

    Since

    4.7

    Note

    Requires MongoDB 4.2 or greater

  2. def apply(filter: Bson, update: Seq[Bson]): UpdateOneModel[Nothing]

    Construct a new instance.

    Construct a new instance.

    filter

    a document describing the query filter.

    update

    a pipeline describing the update, which may not be null.

    returns

    the new UpdateOneModel

    Since

    4.7

    Note

    Requires MongoDB 4.2 or greater

  3. def apply(filter: Bson, update: Bson, updateOptions: UpdateOptions): UpdateOneModel[Nothing]

    Construct a new instance.

    Construct a new instance.

    filter

    a document describing the query filter.

    update

    a document describing the update. The update to apply must include only update operators.

    updateOptions

    the options to apply

    returns

    the new UpdateOneModel

  4. def apply(filter: Bson, update: Bson): UpdateOneModel[Nothing]

    Construct a new instance.

    Construct a new instance.

    filter

    a document describing the query filter.

    update

    a document describing the update. The update to apply must include only update operators.

    returns

    the new UpdateOneModel