-
-
Save ryanbekabe/36c7fd1a01ad22e1542b8b71b981eac7 to your computer and use it in GitHub Desktop.
A script for mongo shell to get the collection structure.
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
var conn = new Mongo(); | |
db = conn.getDB(<DB_NAME>); | |
var cursor = db.<COLLECTION>.find(); | |
var items = []; | |
items = cursor.toArray(); | |
var dbstruc = {}; | |
for (var i = 0; i < items.length; ++i) { | |
var target = items[i]; | |
getKP(target,dbstruc); | |
} | |
printjson(dbstruc); | |
function getKP (target,dbstruc) { | |
for (var k in target) { | |
if(typeof target[k] !== "object"){ | |
if (target.hasOwnProperty(k) && !dbstruc.hasOwnProperty(k)) { | |
dbstruc[k] = typeof target[k]; | |
} | |
}else{ | |
dbstruc[k] = {}; | |
getKP(target[k],dbstruc[k]); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment