myclient = pymongo.MongoClient("mongodb://localhost:27017/")
mydb = myclient["sample"]
mycol = mydb["sales"]
loc = tracker.get_slot('location') // Inside the location values is India is stored in loc
counterNumber = mycol.count()
gettingTotalSize = mycol.find({}, {"_id": 0, "loc": 1})
for x in gettingTotalSize:
dispatcher.utter_message(str(x["loc"]))
return []