Skip to content

Instantly share code, notes, and snippets.

@austra
Last active February 18, 2016 01:00
Show Gist options
  • Save austra/335b50a82f05d716309b to your computer and use it in GitHub Desktop.
Save austra/335b50a82f05d716309b to your computer and use it in GitHub Desktop.
Find duplicate cms keys in mongo
Cms::Content.collection.aggregate([{"$group" => {"_id" => "$key", "count" => {"$sum" => 1}}}, {"$match" => {"count" => {"$gt" => 1}}}, {"$sort" => {"count" => -1}}])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment