उनकी वेबसाइट पर विफल होने वाला कोड वास्तविक MongoDB उदाहरण पर काम करता है:
> db.posts.insert({title: "Hello", tags: ["one", "five"]});
> db.posts.insert({title: "World", tags: ["one", "three"]});
> db.posts.distinct("tags");
[ "one", "three", "five"]
अजीब।