VP
Size: a a a
VP
VP
D
VP
D
VP
D
AK
D
SV
const order = await OrderModel.aggregate([
{
$project: {
courierId: true,
status: true,
assignedCouriers: true,
declinedCouriers: true,
point: [{ $arrayElemAt: [ "$point", 0 ] }]
}
},
{
$match: { _id: id }
},
]);
TS
O
OK
D
AK
AK
AS