Mongo db select specific object with search using aggregate

Anku

 db.getCollection('orderhistories').aggregate([

{$match: {$and: [{ 'orderId': 9051 },]}},

{ $unwind: '$workshop.inclusiveService' },

{$unwind: "$workshop.inclusiveService.serviceId"},

{$replaceRoot: {newRoot: "$workshop.inclusiveService"}},

{$match: {serviceId: 64}}

]);