@infrab4a/connect 4.0.0-beta.32 → 4.0.0-beta.33
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/esm2020/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.mjs +3 -3
- package/fesm2015/infrab4a-connect.mjs +4 -4
- package/fesm2015/infrab4a-connect.mjs.map +1 -1
- package/fesm2020/infrab4a-connect.mjs +2 -2
- package/fesm2020/infrab4a-connect.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4112,8 +4112,8 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
|
|
|
4112
4112
|
options.options?.minimal.push('price.price', 'price.fullPrice', 'price.subscriberPrice');
|
|
4113
4113
|
if (options.options?.maximum?.includes('price'))
|
|
4114
4114
|
options.options?.maximum.push('price.price', 'price.fullPrice', 'price.subscriberPrice');
|
|
4115
|
-
options.options?.minimal
|
|
4116
|
-
options.options?.maximum
|
|
4115
|
+
options.options?.minimal?.splice(options.options?.minimal.indexOf('price'), 1);
|
|
4116
|
+
options.options?.maximum?.splice(options.options?.maximum.indexOf('price'), 1);
|
|
4117
4117
|
return super.find({
|
|
4118
4118
|
...options,
|
|
4119
4119
|
filters: { ...filters, productId: { operator: Where.ISNULL } },
|