blob: cff14b029d9bb0f306dbe12b22c71a6091a79f33 (
plain)
1
2
3
4
5
6
7
8
9
10
|
t = db.fm1;
t.drop();
t.insert({foo: {bar: 1}});
t.find({}, {foo: 1}).toArray();
t.find({}, {'foo.bar': 1}).toArray();
t.find({}, {'baz': 1}).toArray();
t.find({}, {'baz.qux': 1}).toArray();
t.find({}, {'foo.qux': 1}).toArray();
|