Super-quick one-liner to collect & show all keys in an object from the
mongo db shell:

keys = []; for(x in gds){keys.push(x)}; keys

Technically should work in any js environment, but I only found it
necessary in the mongo shell, where a key can have so many sub-items
that it clears out the terminal above it.