Created
November 12, 2024 08:01
-
-
Save agaase/e188528c4cbb750a1ea8adc419ed3b4e to your computer and use it in GitHub Desktop.
la-onlinepmt-orders-query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
$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