Module: Mongoid::Contextual::Command

Included in:
GeoNear, MapReduce
Defined in:
build/mongoid-7.0/lib/mongoid/contextual/command.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#collectionObject (readonly)

Returns the value of attribute collection.



8
9
10
# File 'build/mongoid-7.0/lib/mongoid/contextual/command.rb', line 8

def collection
  @collection
end

#collection The collection to query against.(Thecollectiontoqueryagainst.) ⇒ Object (readonly)



8
# File 'build/mongoid-7.0/lib/mongoid/contextual/command.rb', line 8

attr_reader :collection, :criteria

#criteriaObject (readonly)

Returns the value of attribute criteria.



8
9
10
# File 'build/mongoid-7.0/lib/mongoid/contextual/command.rb', line 8

def criteria
  @criteria
end

#criteria The criteria for the context.(Thecriteria) ⇒ Object (readonly)



8
# File 'build/mongoid-7.0/lib/mongoid/contextual/command.rb', line 8

attr_reader :collection, :criteria

Instance Method Details

#clientMongo::Client

Get the database client.

Examples:

Get the client.

command.client

Returns:

  • (Mongo::Client)

    The Mongo client.

Since:

  • 3.0.0



30
31
32
# File 'build/mongoid-7.0/lib/mongoid/contextual/command.rb', line 30

def client
  collection.database.client
end

#commandHash

The database command that is being built to send to the db.

Examples:

Get the command.

command.command

Returns:

  • (Hash)

    The db command.

Since:

  • 3.0.0



18
19
20
# File 'build/mongoid-7.0/lib/mongoid/contextual/command.rb', line 18

def command
  @command ||= {}
end