Class: Mongoid::Contextual::Mongo

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Includes:
Enumerable, Association::EagerLoadable, Atomic, Aggregable::Mongo, Queryable, Pluckable
Defined in:
lib/mongoid/contextual/mongo.rb,
lib/mongoid/contextual/mongo/documents_loader.rb

Overview

Context object used for performing bulk query and persistence operations on documents which are persisted in the database and have not been loaded into application memory.

Defined Under Namespace

Classes: DocumentsLoader

Constant Summary collapse

OPTIONS =

Options constant.

%i[hint
limit
skip
sort
batch_size
max_scan
max_time_ms
snapshot
comment
read
cursor_type
collation].freeze

Constants included from Atomic

Atomic::UPDATES

Instance Attribute Summary collapse

Attributes included from Queryable

#collection, #collection The collection to query against., #criteria, #criteria The criteria for the context., #klass, #klass The klass for the criteria.

Instance Method Summary collapse

Methods included from Queryable

#blank?

Methods included from Association::EagerLoadable

#create_pipeline, #eager_load, #eager_load_with_lookup, #eager_loadable?, #preload, #preload_for_lookup, #switch_local_and_foreign_fields?

Methods included from Atomic

#add_atomic_pull, #add_atomic_unset, #atomic_array_add_to_sets, #atomic_array_pulls, #atomic_array_pushes, #atomic_attribute_name, #atomic_delete_modifier, #atomic_insert_modifier, #atomic_path, #atomic_paths, #atomic_position, #atomic_pulls, #atomic_pushes, #atomic_sets, #atomic_unsets, #atomic_updates, #delayed_atomic_pulls, #delayed_atomic_sets, #delayed_atomic_unsets, #flag_as_destroyed, #flagged_destroys, #process_flagged_destroys

Methods included from Aggregable::Mongo

#aggregates, #avg, #max, #min, #sum

Constructor Details

#initialize(criteria) ⇒ Mongo

Create the new Mongo context. This delegates operations to the underlying driver.

Examples:

Create the new context.

Mongo.new(criteria)

Parameters:



269
270
271
272
273
274
275
# File 'lib/mongoid/contextual/mongo.rb', line 269

def initialize(criteria)
  @criteria, @klass = criteria, criteria.klass
  @collection = @klass.collection
  criteria.send(:merge_type_selection)
  @view = collection.find(criteria.selector, session: _session)
  apply_options
end

Instance Attribute Details

#documents_loaderObject (readonly)

Returns the value of attribute documents_loader.



53
54
55
# File 'lib/mongoid/contextual/mongo.rb', line 53

def documents_loader
  @documents_loader
end

#viewHash (readonly)

Run an explain on the criteria.

Examples:

Explain the criteria.

Band.where(name: "Depeche Mode").explain

Parameters:

  • options (Hash)

    customizable options (See Mongo::Collection::View::Explainable)

Returns:

  • (Hash)

    The explain result.



41
42
43
# File 'lib/mongoid/contextual/mongo.rb', line 41

def view
  @view
end

#view The Mongo collection view.(TheMongocollectionview.) ⇒ Object (readonly)



41
# File 'lib/mongoid/contextual/mongo.rb', line 41

attr_reader :view

Instance Method Details

#count(options = {}, &block) ⇒ Integer

Get the number of documents matching the query.

Examples:

Get the number of matching documents.

context.count

Get the count of documents with the provided options.

context.count(limit: 1)

Get the count for where the provided block is true.

context.count do |doc|
  doc.likes > 1
end

Parameters:

  • options (Hash) (defaults to: {})

    The options, such as skip and limit to be factored into the count.

Returns:

  • (Integer)

    The number of matches.



72
73
74
75
76
77
78
79
80
81
82
# File 'lib/mongoid/contextual/mongo.rb', line 72

def count(options = {}, &block)
  return super(&block) if block_given?

  if valid_for_count_documents?
    view.count_documents(options)
  else
    # TODO: Remove this when we remove the deprecated for_js API.
    # https://jira.mongodb.org/browse/MONGOID-5681
    view.count(options)
  end
end

#deletenil Also known as: delete_all

Delete all documents in the database that match the selector.

Examples:

Delete all the documents.

context.delete

Returns:

  • (nil)

    Nil.



112
113
114
# File 'lib/mongoid/contextual/mongo.rb', line 112

def delete
  view.delete_many.deleted_count
end

#destroynil Also known as: destroy_all

Destroy all documents in the database that match the selector.

Examples:

Destroy all the documents.

context.destroy

Returns:

  • (nil)

    Nil.



123
124
125
126
127
128
129
# File 'lib/mongoid/contextual/mongo.rb', line 123

def destroy
  each.inject(0) do |count, doc|
    doc.destroy
    count += 1 if acknowledged_write?
    count
  end
end

#distinct(field) ⇒ Array<Object>

Get the distinct values in the db for the provided field.

Examples:

Get the distinct values.

context.distinct(:name)

Parameters:

  • field (String | Symbol)

    The name of the field.

Returns:

  • (Array<Object>)

    The distinct values for the field.



140
141
142
143
144
145
146
147
# File 'lib/mongoid/contextual/mongo.rb', line 140

def distinct(field)
  name = klass.cleanse_localized_field_names(field)

  view.distinct(name).map do |value|
    is_translation = "#{name}_translations" == field.to_s
    recursive_demongoize(name, value, is_translation)
  end
end

#each(&block) ⇒ Enumerator

Iterate over the context. If provided a block, yield to a Mongoid document for each, otherwise return an enum.

Examples:

Iterate over the context.

context.each do |doc|
  puts doc.name
end

Returns:

  • (Enumerator)

    The enumerator.



158
159
160
161
162
163
164
165
166
167
# File 'lib/mongoid/contextual/mongo.rb', line 158

def each(&block)
  if block_given?
    documents_for_iteration.each do |doc|
      yield_document(doc, &block)
    end
    self
  else
    to_enum
  end
end

#estimated_count(options = {}) ⇒ Integer

Get the estimated number of documents matching the query.

Unlike count, estimated_count does not take a block because it is not traditionally defined (with a block) on Enumerable like count is.

Examples:

Get the estimated number of matching documents.

context.estimated_count

Parameters:

  • options (Hash) (defaults to: {})

    The options, such as maxTimeMS to be factored into the count.

Returns:

  • (Integer)

    The number of matches.



96
97
98
99
100
101
102
103
104
# File 'lib/mongoid/contextual/mongo.rb', line 96

def estimated_count(options = {})
  unless criteria.selector.empty?
    raise Mongoid::Errors::InvalidEstimatedCountScoping.new(klass) if klass.default_scoping?

    raise Mongoid::Errors::InvalidEstimatedCountCriteria.new(klass)

  end
  view.estimated_document_count(options)
end

#exists?(id_or_conditions = :none) ⇒ true | false

Note:

We don't use count here since Mongo does not use counted b-tree indexes.

Do any documents exist for the context.

Examples:

Do any documents exist for the context.

context.exists?

Do any documents exist for given _id.

context.exists?(BSON::ObjectId(...))

Do any documents exist for given conditions.

context.exists?(name: "...")

Parameters:

  • id_or_conditions (Hash | Object | false) (defaults to: :none)

    an _id to search for, a hash of conditions, nil or false.

Returns:

  • (true | false)

    If the count is more than zero. Always false if passed nil or false.



188
189
190
191
192
193
194
195
196
197
# File 'lib/mongoid/contextual/mongo.rb', line 188

def exists?(id_or_conditions = :none)
  return false if view.limit == 0

  case id_or_conditions
  when :none then !!view.projection(_id: 1).limit(1).first
  when nil, false then false
  when Hash then Mongo.new(criteria.where(id_or_conditions)).exists?
  else Mongo.new(criteria.where(_id: id_or_conditions)).exists?
  end
end

#fifthDocument | nil

Get the fifth document in the database for the criteria's selector.

Examples:

Get the fifth document.

context.fifth

Returns:

  • (Document | nil)

    The fifth document or nil if none is found.



684
685
686
# File 'lib/mongoid/contextual/mongo.rb', line 684

def fifth
  retrieve_nth(4)
end

#fifth!Document

Get the fifth document in the database for the criteria's selector or raise an error if none is found.

Examples:

Get the fifth document.

context.fifth!

Returns:

Raises:



698
699
700
# File 'lib/mongoid/contextual/mongo.rb', line 698

def fifth!
  fifth || raise_document_not_found_error
end

#find_firstObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return the first result without applying sort



255
256
257
258
259
260
# File 'lib/mongoid/contextual/mongo.rb', line 255

def find_first
  return unless raw_doc = view.first

  doc = Factory.from_db(klass, raw_doc, criteria)
  eager_load([ doc ]).first
end

#find_one_and_deleteDocument

Execute the find and modify command, used for MongoDB's $findAndModify. This deletes the found document.

Examples:

Execute the command.

context.find_one_and_delete

Returns:

  • (Document)

    The result of the command.



246
247
248
249
250
# File 'lib/mongoid/contextual/mongo.rb', line 246

def find_one_and_delete
  return unless doc = view.find_one_and_delete

  Factory.from_db(klass, doc)
end

#find_one_and_replace(replacement, options = {}) ⇒ Document

Execute the find and modify command, used for MongoDB's $findAndModify.

Examples:

Execute the command.

context.find_one_and_update({ likes: 1 })

Parameters:

  • replacement (Hash)

    The replacement.

  • options (Hash) (defaults to: {})

    The command options.

Options Hash (options):

  • :return_document (:before | :after)

    Return the updated document from before or after update.

  • :upsert (true | false)

    Create the document if it doesn't exist.

Returns:

  • (Document)

    The result of the command.



233
234
235
236
237
# File 'lib/mongoid/contextual/mongo.rb', line 233

def find_one_and_replace(replacement, options = {})
  return unless doc = view.find_one_and_replace(replacement, options)

  Factory.from_db(klass, doc)
end

#find_one_and_update(update, options = {}) ⇒ Document

Execute the find and modify command, used for MongoDB's $findAndModify.

Examples:

Execute the command.

context.find_one_and_update({ "$inc" => { likes: 1 }})

Parameters:

  • update (Hash)

    The updates.

  • options (Hash) (defaults to: {})

    The command options.

Options Hash (options):

  • :return_document (:before | :after)

    Return the updated document from before or after update.

  • :upsert (true | false)

    Create the document if it doesn't exist.

Returns:

  • (Document)

    The result of the command.



213
214
215
216
217
# File 'lib/mongoid/contextual/mongo.rb', line 213

def find_one_and_update(update, options = {})
  return unless doc = view.find_one_and_update(update, options)

  Factory.from_db(klass, doc)
end

#first(limit = nil) ⇒ Document | nil Also known as: one

Note:

Automatically adding a sort on _id when no other sort is defined on the criteria has the potential to cause bad performance issues. If you experience unexpected poor performance when using #first or #last and have no sort defined on the criteria, use #take instead. Be aware that #take won't guarantee order.

Get the first document in the database for the criteria's selector.

Examples:

Get the first document.

context.first

Parameters:

  • limit (Integer) (defaults to: nil)

    The number of documents to return.

Returns:

  • (Document | nil)

    The first document or nil if none is found.



535
536
537
538
539
540
541
# File 'lib/mongoid/contextual/mongo.rb', line 535

def first(limit = nil)
  if limit.nil?
    retrieve_nth(0)
  else
    retrieve_nth_with_limit(0, limit)
  end
end

#first!Document

Note:

Automatically adding a sort on _id when no other sort is defined on the criteria has the potential to cause bad performance issues. If you experience unexpected poor performance when using #first! or #last! and have no sort defined on the criteria, use #take! instead. Be aware that #take! won't guarantee order.

Get the first document in the database for the criteria's selector or raise an error if none is found.

Examples:

Get the first document.

context.first!

Returns:

Raises:



560
561
562
# File 'lib/mongoid/contextual/mongo.rb', line 560

def first!
  first || raise_document_not_found_error
end

#fourthDocument | nil

Get the fourth document in the database for the criteria's selector.

Examples:

Get the fourth document.

context.fourth

Returns:

  • (Document | nil)

    The fourth document or nil if none is found.



660
661
662
# File 'lib/mongoid/contextual/mongo.rb', line 660

def fourth
  retrieve_nth(3)
end

#fourth!Document

Get the fourth document in the database for the criteria's selector or raise an error if none is found.

Examples:

Get the fourth document.

context.fourth!

Returns:

Raises:



674
675
676
# File 'lib/mongoid/contextual/mongo.rb', line 674

def fourth!
  fourth || raise_document_not_found_error
end

#last(limit = nil) ⇒ Document | nil

Note:

Automatically adding a sort on _id when no other sort is defined on the criteria has the potential to cause bad performance issues. If you experience unexpected poor performance when using #first or #last and have no sort defined on the criteria, use #take instead. Be aware that #take won't guarantee order.

Get the last document in the database for the criteria's selector.

Examples:

Get the last document.

context.last

Parameters:

  • limit (Integer) (defaults to: nil)

    The number of documents to return.

Returns:

  • (Document | nil)

    The last document or nil if none is found.



578
579
580
581
582
583
584
# File 'lib/mongoid/contextual/mongo.rb', line 578

def last(limit = nil)
  if limit.nil?
    retrieve_nth_to_last(0)
  else
    retrieve_nth_to_last_with_limit(0, limit)
  end
end

#last!Document

Note:

Automatically adding a sort on _id when no other sort is defined on the criteria has the potential to cause bad performance issues. If you experience unexpected poor performance when using #first! or #last! and have no sort defined on the criteria, use #take! instead. Be aware that #take! won't guarantee order.

Get the last document in the database for the criteria's selector or raise an error if none is found.

Examples:

Get the last document.

context.last!

Returns:

Raises:



602
603
604
# File 'lib/mongoid/contextual/mongo.rb', line 602

def last!
  last || raise_document_not_found_error
end

#lengthInteger Also known as: size

Returns the number of documents in the database matching the query selector.

Examples:

Get the length.

context.length

Returns:

  • (Integer)

    The number of documents.



286
287
288
# File 'lib/mongoid/contextual/mongo.rb', line 286

def length
  count
end

#limit(value) ⇒ Mongo

Limits the number of documents that are returned from the database.

Examples:

Limit the documents.

context.limit(20)

Parameters:

  • value (Integer)

    The number of documents to return.

Returns:

  • (Mongo)

    The context.



299
300
301
# File 'lib/mongoid/contextual/mongo.rb', line 299

def limit(value)
  @view = view.limit(value) and self
end

#load_asyncObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Schedule a task to load documents for the context.

Depending on the Mongoid configuration, the scheduled task can be executed immediately on the caller's thread, or can be scheduled for an asynchronous execution.



761
762
763
# File 'lib/mongoid/contextual/mongo.rb', line 761

def load_async
  @documents_loader ||= DocumentsLoader.new(view, klass, criteria)
end

#map_reduce(map, reduce) ⇒ MapReduce

Initiate a map/reduce operation from the context.

Examples:

Initiate a map/reduce.

context.map_reduce(map, reduce)

Parameters:

  • map (String)

    The map js function.

  • reduce (String)

    The reduce js function.

Returns:

  • (MapReduce)

    The map/reduce lazy wrapper.



312
313
314
# File 'lib/mongoid/contextual/mongo.rb', line 312

def map_reduce(map, reduce)
  MapReduce.new(collection, criteria, map, reduce)
end

#pick(*fields) ⇒ Object | Array<Object>

Pick the single field values from the database.

Examples:

Pick a field.

context.pick(:_id)

Parameters:

  • *fields ([ String | Symbol ]...)

    Field(s) to pick.

Returns:

  • (Object | Array<Object>)

    The picked values.



349
350
351
# File 'lib/mongoid/contextual/mongo.rb', line 349

def pick(*fields)
  limit(1).pluck(*fields).first
end

#pluck(*fields) ⇒ Array<Object> | Array<Array<Object>>

Pluck the field value(s) from the database. Returns one result for each document found in the database for the context. The results are normalized according to their Mongoid field types. Note that the results may include duplicates and nil values.

Examples:

Pluck a field.

context.pluck(:_id)

Parameters:

  • *fields ([ String | Symbol ]...)

    Field(s) to pluck, which may include nested fields using dot-notation.

Returns:

  • (Array<Object> | Array<Array<Object>>)

    The plucked values. If the *fields arg contains a single value, each result in the array will be a single value. Otherwise, each result in the array will be an array of values.



332
333
334
335
336
337
338
339
# File 'lib/mongoid/contextual/mongo.rb', line 332

def pluck(*fields)
  # Multiple fields can map to the same field name. For example,
  # plucking a field and its _translations field map to the same
  # field in the database. because of this, we need to prepare the
  # projection specifically.
  prep = prepare_pluck(fields, prepare_projection: true)
  pluck_from_documents(view.projection(prep[:projection]), prep[:field_names])
end

#secondDocument | nil

Get the second document in the database for the criteria's selector.

Examples:

Get the second document.

context.second

Returns:

  • (Document | nil)

    The second document or nil if none is found.



612
613
614
# File 'lib/mongoid/contextual/mongo.rb', line 612

def second
  retrieve_nth(1)
end

#second!Document

Get the second document in the database for the criteria's selector or raise an error if none is found.

Examples:

Get the second document.

context.second!

Returns:

Raises:



626
627
628
# File 'lib/mongoid/contextual/mongo.rb', line 626

def second!
  second || raise_document_not_found_error
end

#second_to_lastDocument | nil

Get the second to last document in the database for the criteria's selector.

is found.

Examples:

Get the second to last document.

context.second_to_last

Returns:

  • (Document | nil)

    The second to last document or nil if none



710
711
712
# File 'lib/mongoid/contextual/mongo.rb', line 710

def second_to_last
  retrieve_nth_to_last(1)
end

#second_to_last!Document

Get the second to last document in the database for the criteria's selector or raise an error if none is found.

Examples:

Get the second to last document.

context.second_to_last!

Returns:

  • (Document)

    The second to last document.

Raises:



724
725
726
# File 'lib/mongoid/contextual/mongo.rb', line 724

def second_to_last!
  second_to_last || raise_document_not_found_error
end

#skip(value) ⇒ Mongo

Skips the provided number of documents.

Examples:

Skip the documents.

context.skip(20)

Parameters:

  • value (Integer)

    The number of documents to skip.

Returns:

  • (Mongo)

    The context.



465
466
467
# File 'lib/mongoid/contextual/mongo.rb', line 465

def skip(value)
  @view = view.skip(value) and self
end

#sort(values = nil, &block) ⇒ Mongo

Sorts the documents by the provided spec.

Examples:

Sort the documents.

context.sort(name: -1, title: 1)

Parameters:

  • values (Hash) (defaults to: nil)

    The sorting values as field/direction(1/-1) pairs.

Returns:

  • (Mongo)

    The context.



478
479
480
481
482
483
484
485
486
487
# File 'lib/mongoid/contextual/mongo.rb', line 478

def sort(values = nil, &block)
  if block_given?
    super(&block)
  else
    # update the criteria
    @criteria = criteria.order_by(values)
    apply_option(:sort)
    self
  end
end

#take(limit = nil) ⇒ Document | Array<Document>

Take the given number of documents from the database.

Examples:

Take 10 documents

context.take(10)

Parameters:

  • limit (Integer | nil) (defaults to: nil)

    The number of documents to return or nil.

Returns:

  • (Document | Array<Document>)

    The list of documents, or one document if no value was given.



362
363
364
365
366
367
368
369
370
# File 'lib/mongoid/contextual/mongo.rb', line 362

def take(limit = nil)
  if limit
    limit(limit).to_a
  else
    # Do to_a first so that the Mongo#first method is not used and the
    # result is not sorted.
    limit(1).to_a.first
  end
end

#take!Document

Take one document from the database and raise an error if there are none.

Examples:

Take a document

context.take!

Returns:

Raises:



381
382
383
384
385
386
387
# File 'lib/mongoid/contextual/mongo.rb', line 381

def take!
  # Do to_a first so that the Mongo#first method is not used and the
  # result is not sorted.
  raise Errors::DocumentNotFound.new(klass, nil, nil) unless fst = limit(1).to_a.first

  fst
end

#tally(field) ⇒ Hash

Get a hash of counts for the values of a single field. For example, if the following documents were in the database:

{ _id: 1, age: 21 }
{ _id: 2, age: 21 }
{ _id: 3, age: 22 }

Model.tally("age")

would yield the following result:

{ 21 => 2, 22 => 1 }

When tallying a field inside an array or embeds_many association:

{ _id: 1, array: [ { x: 1 }, { x: 2 } ] }
{ _id: 2, array: [ { x: 1 }, { x: 2 } ] }
{ _id: 3, array: [ { x: 1 }, { x: 3 } ] }

Model.tally("array.x")

The keys of the resulting hash are arrays:

{ [ 1, 2 ] => 2, [ 1, 3 ] => 1 }

Note that if tallying an element in an array of hashes, and the key doesn't exist in some of the hashes, tally will not include those nil keys in the resulting hash:

{ _id: 1, array: [ { x: 1 }, { x: 2 }, { y: 3 } ] }

Model.tally("array.x")
# => { [ 1, 2 ] => 1 }

Parameters:

  • field (String | Symbol)

    The field name.

Returns:

  • (Hash)

    The hash of counts.



426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
# File 'lib/mongoid/contextual/mongo.rb', line 426

def tally(field)
  name = klass.cleanse_localized_field_names(field)

  fld = klass.traverse_association_tree(name)
  pipeline = [ { '$group' => { _id: "$#{name}", counts: { '$sum': 1 } } } ]
  pipeline.unshift('$match' => view.filter) unless view.filter.blank?

  collection.aggregate(pipeline).each_with_object({}) do |doc, tallies|
    is_translation = "#{name}_translations" == field.to_s
    val = doc['_id']

    key = if val.is_a?(Array)
            val.map do |v|
              demongoize_with_field(fld, v, is_translation)
            end
          else
            demongoize_with_field(fld, val, is_translation)
          end

    # The only time where a key will already exist in the tallies hash
    # is when the values are stored differently in the database, but
    # demongoize to the same value. A good example of when this happens
    # is when using localized fields. While the server query won't group
    # together hashes that have other values in different languages, the
    # demongoized value is just the translation in the current locale,
    # which can be the same across multiple of those unequal hashes.
    tallies[key] ||= 0
    tallies[key] += doc['counts']
  end
end

#thirdDocument | nil

Get the third document in the database for the criteria's selector.

Examples:

Get the third document.

context.third

Returns:

  • (Document | nil)

    The third document or nil if none is found.



636
637
638
# File 'lib/mongoid/contextual/mongo.rb', line 636

def third
  retrieve_nth(2)
end

#third!Document

Get the third document in the database for the criteria's selector or raise an error if none is found.

Examples:

Get the third document.

context.third!

Returns:

Raises:



650
651
652
# File 'lib/mongoid/contextual/mongo.rb', line 650

def third!
  third || raise_document_not_found_error
end

#third_to_lastDocument | nil

Get the third to last document in the database for the criteria's selector.

is found.

Examples:

Get the third to last document.

context.third_to_last

Returns:

  • (Document | nil)

    The third to last document or nil if none



736
737
738
# File 'lib/mongoid/contextual/mongo.rb', line 736

def third_to_last
  retrieve_nth_to_last(2)
end

#third_to_last!Document

Get the third to last document in the database for the criteria's selector or raise an error if none is found.

Examples:

Get the third to last document.

context.third_to_last!

Returns:

  • (Document)

    The third to last document.

Raises:



750
751
752
# File 'lib/mongoid/contextual/mongo.rb', line 750

def third_to_last!
  third_to_last || raise_document_not_found_error
end

#update(attributes = nil, opts = {}) ⇒ nil | false

Update the first matching document atomically.

Examples:

Update the first matching document.

context.update({ "$set" => { name: "Smiths" }})

Parameters:

  • attributes (Hash) (defaults to: nil)

    The new attributes for the document.

  • opts (Hash) (defaults to: {})

    The update operation options.

Options Hash (opts):

  • :array_filters (Array)

    A set of filters specifying to which array elements an update should apply.

Returns:

  • (nil | false)

    False if no attributes were provided.



501
502
503
# File 'lib/mongoid/contextual/mongo.rb', line 501

def update(attributes = nil, opts = {})
  update_documents(attributes, :update_one, opts)
end

#update_all(attributes = nil, opts = {}) ⇒ nil | false

Update all the matching documents atomically.

Examples:

Update all the matching documents.

context.update_all({ "$set" => { name: "Smiths" }})

Parameters:

  • attributes (Hash) (defaults to: nil)

    The new attributes for each document.

  • opts (Hash) (defaults to: {})

    The update operation options.

Options Hash (opts):

  • :array_filters (Array)

    A set of filters specifying to which array elements an update should apply.

Returns:

  • (nil | false)

    False if no attributes were provided.



517
518
519
# File 'lib/mongoid/contextual/mongo.rb', line 517

def update_all(attributes = nil, opts = {})
  update_documents(attributes, :update_many, opts)
end