@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.
@@ -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.splice(options.options?.minimal.indexOf('price'), 1);
4116
- options.options?.maximum.splice(options.options?.maximum.indexOf('price'), 1);
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 } },