Database

[{"count":38,"city":"Fort Worth","state":"TX","country":"US"},{"count":2,"city":"Chatsworth","state":"GA","country":"US"},{"count":32,"city":"Round Rock","state":"TX","country":"US"},{"city":"Little Rock","state":"AR","count":72,"country":"US"},{"count":34,"city":"Theodore","state":"AL","country":"US"}]

Query

db.collection.aggregate([{"$group":{"_id":{"$switch":{"branches":[{"case":{$in:["$state",["TX","AR"]]},"then":"South West Region"}],"default":"South East Region"}},"locations":{"$push":"$$ROOT"}}}])

Result