Function MongoCollection.distinct
Returns an input range of all unique values for a certain field for records matching the given query.
Parameters
Name | Description |
---|---|
fieldName | Name of the field for which to collect unique values |
query | The query used to select records |
options | Options to apply |
Returns
An input range with items of type R
(Bson
by default) is
returned.
Example
import std .algorithm : equal;
import vibe .db .mongo .mongo;
void test()
{
auto db = connectMongoDB("127.0.0.1") .getDatabase("test");
auto coll = db["collection"];
coll .drop();
coll .insertOne(["a": "first", "b": "foo"]);
coll .insertOne(["a": "first", "b": "bar"]);
coll .insertOne(["a": "first", "b": "bar"]);
coll .insertOne(["a": "second", "b": "baz"]);
coll .insertOne(["a": "second", "b": "bam"]);
auto result = coll .distinct!string("b", ["a": "first"]);
assert(result .equal(["foo", "bar"]));
}