populate shipping cost

This commit is contained in:
morteza-mortezai
2025-11-29 14:37:48 +03:30
parent 488807278e
commit c0b8fd3cbf
+5 -1
View File
@@ -20,7 +20,11 @@ class CartRepository extends BaseRepository<ICart> {
})
.populate({
path: "items.variant",
populate: ["color", "size", "meterage", "warranty", "shop"],
populate: [
{ path: "warranty" },
{ path: "shop" },
{ path: "themeValue" },
],
});
}