Check object existence in mongo using gopkg.in/mgo.v2
count, err = collection.Find(bson.M{field: value}).Count()
you have to use $exists
Syntax: { field: { $exists: } }
For more details
http://docs.mongodb.org/manual/reference/operator/query/exists/