Database

[{customerName:"Joe",bidValue:178,/** for example in $ - dollars*/tableID:2,isSeated:false,isFinished:false},{customerName:"Frank",bidValue:212,/** for example in $ - dollars*/tableID:2,isSeated:true,isFinished:false},{customerName:"Martin",bidValue:123,/** for example in $ - dollars*/tableID:2,isSeated:false,isFinished:false},{customerName:"John",bidValue:15,/** for example in $ - dollars*/tableID:1,isSeated:false,isFinished:false},{customerName:"Gino",bidValue:87,/** for example in $ - dollars*/tableID:1,isSeated:true,isFinished:false},{customerName:"Patrick",bidValue:23,/** for example in $ - dollars*/tableID:3,isSeated:true,isFinished:false},]

Query

db.collection.aggregate({"$sort":{"bidValue":-1}},{"$group":{"_id":"$tableID","customerName":{"$first":"$customerName"},"bidValue":{"$first":"$bidValue"},"isSeated":{"$first":"$isSeated"},"isFinished":{"$first":"$isFinished"}}})

Result