MongoCollection.find

Queries all documents of the collection.

Examples

import vibe.db.mongo.mongo;

void test()
{
	auto coll = connectMongoDB("127.0.0.1").getCollection("test");
	// find all documents in the "test" collection.
	coll.find();
}

See Also

Meta