Skip to content

Instantly share code, notes, and snippets.

@agaase
Created November 12, 2024 08:01
Show Gist options
  • Save agaase/e188528c4cbb750a1ea8adc419ed3b4e to your computer and use it in GitHub Desktop.
Save agaase/e188528c4cbb750a1ea8adc419ed3b4e to your computer and use it in GitHub Desktop.
la-onlinepmt-orders-query
[
{
$match: {
status: "paid",
}
},
{
$lookup: {
from: "orders",
localField: "refId",
foreignField: "_id",
as: "order"
}
},
{
$unwind: {
path: "$order",
preserveNullAndEmptyArrays: false
}
},
{
$project: {
paymentAmt: "$amount",
orderId: "$order.orderId",
paymentId: "$paymentId",
paymentDate: "$updatedAt"
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment