Ikkitechteam

Untitled

Aug 1st, 2024
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. [
  2. {
  3. $group: {
  4. _id: "$productId",
  5. name: {
  6. $push: "$name"
  7. }
  8. }
  9. },
  10. {
  11. $lookup: {
  12. from: "product",
  13. localField: "_id",
  14. foreignField: "_id",
  15. as: "p"
  16. }
  17. },
  18. {
  19. $unwind: "$p"
  20. },
  21. {
  22. $addFields: {
  23. sizeP: {
  24. $size: "$p.variants"
  25. },
  26. sizeName: {
  27. $size: "$name"
  28. },
  29. isMatch: {
  30. $eq: [
  31. {$size: "$p.variants"},
  32. {$size: "$name"}
  33. ]
  34. }
  35. }
  36. },
  37. {
  38. $match: {
  39. isMatch: false
  40. }
  41. }
  42. ]
Advertisement
Add Comment
Please, Sign In to add comment