Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [
- {
- $group: {
- _id: "$asatoAssetId",
- count: {
- $sum: 1
- },
- documents: {
- $push: "$$ROOT"
- }
- }
- },
- {
- $match: {
- count: {
- $gt: 1
- }
- }
- },
- {
- $project: {
- documents: 1,
- _id: 0
- }
- },
- {
- $unwind: "$documents"
- },
- {
- $replaceRoot: {
- newRoot: "$documents"
- }
- }
- ]
Advertisement
Add Comment
Please, Sign In to add comment