mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
|
|
t = db.fm2
|
|
t.drop();
|
|
|
|
t.insert( { "one" : { "two" : {"three":"four"} } } );
|
|
|
|
x = t.find({},{"one.two":1})[0]
|
|
assert.eq( 1 , Object.keySet( x.one ).length , "ks l 1" );
|
|
|