@infrab4a/connect 4.2.3-beta.1 → 4.2.3-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs.js +2 -1
- package/index.esm.js +2 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -5436,7 +5436,8 @@ class WishlistHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
5436
5436
|
type: 'category_product_bool_exp',
|
|
5437
5437
|
required: true,
|
|
5438
5438
|
value: {
|
|
5439
|
-
category_id:
|
|
5439
|
+
category_id: categoryId,
|
|
5440
|
+
product_id: { _in: category.products.filter((productId) => !plainData.products.includes(productId)) },
|
|
5440
5441
|
},
|
|
5441
5442
|
},
|
|
5442
5443
|
});
|
package/index.esm.js
CHANGED
|
@@ -5430,7 +5430,8 @@ class WishlistHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
5430
5430
|
type: 'category_product_bool_exp',
|
|
5431
5431
|
required: true,
|
|
5432
5432
|
value: {
|
|
5433
|
-
category_id:
|
|
5433
|
+
category_id: categoryId,
|
|
5434
|
+
product_id: { _in: category.products.filter((productId) => !plainData.products.includes(productId)) },
|
|
5434
5435
|
},
|
|
5435
5436
|
},
|
|
5436
5437
|
});
|