Updates all documents matching the selector.

See update.

Property definitions

mongodb $ MongoCollection :: update_all
	# Updates all documents matching the `selector`.
	#
	# See `update`.
	fun update_all(selector: JsonObject, update: JsonObject): Bool do
		return native.update_all(
			selector.to_bson.native,
			update.to_bson.native)
	end
lib/mongodb/mongodb.nit:533,2--540,4