Module: Mongoid::Persistable::Pullable
- Extended by:
- ActiveSupport::Concern
- Included in:
- Mongoid::Persistable
- Defined in:
- lib/mongoid/persistable/pullable.rb
Overview
Defines behavior for $pull and $pullAll operations.
Instance Method Summary collapse
-
#pull(pulls) ⇒ Document
Pull single values from the provided arrays.
-
#pull_all(pulls) ⇒ Document
Pull multiple values from the provided array fields.
Instance Method Details
#pull(pulls) ⇒ Document
Note:
If duplicate values are found they will all be pulled.
Pull single values from the provided arrays.
19 20 21 22 23 24 25 26 27 |
# File 'lib/mongoid/persistable/pullable.rb', line 19 def pull(pulls) prepare_atomic_operation do |ops| process_atomic_operations(pulls) do |field, value| (send(field) || []).delete(value) ops[atomic_attribute_name(field)] = value end { '$pull' => ops } end end |
#pull_all(pulls) ⇒ Document
Pull multiple values from the provided array fields.
37 38 39 40 41 42 43 44 45 46 |
# File 'lib/mongoid/persistable/pullable.rb', line 37 def pull_all(pulls) prepare_atomic_operation do |ops| process_atomic_operations(pulls) do |field, value| existing = send(field) || [] value.each { |val| existing.delete(val) } ops[atomic_attribute_name(field)] = value end { '$pullAll' => ops } end end |