In MongoDB doing something like db.mycollection.find() returns all documents in a collection.
db.mycollection.find()
When working in GoLang using the package labix.org/v2/
Found a solution:
var results []client err := db.C("client").Find(nil).All(&results) if err != nil { // TODO: Do something about the error } else { fmt.Println("Results All: ", results) }