J'aimerais obtenir les noms de toutes les clés d'une collection MongoDB.
Par exemple, à partir de ceci:
db.things.insert( { type : ['dog', 'cat'] } );
db.things.insert( { egg : ['cat'] } );
db.things.insert( { type : [] } );
db.things.insert( { hello : [] } );
J'aimerais obtenir les clés uniques:
type, egg, hello
À votre santé