Created
January 30, 2018 16:59
-
-
Save amatai/4da50d4de0b5c681ec064dfe5e9cb8a6 to your computer and use it in GitHub Desktop.
Mongo Tricks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.things.aggregate([{$project: {arrayofkeyvalue: {$objectToArray: "$$ROOT"}}}, {$unwind:"$arrayofkeyvalue"}, {$group:{_id:null, allkeys:{$addToSet:"$arrayofkeyvalue.k"}}}]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment