@infrab4a/connect 5.3.0-beta.8 → 5.3.0-beta.9

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 CHANGED
@@ -8063,7 +8063,7 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
8063
8063
  options.options?.maximum?.splice(options.options?.maximum.indexOf('price'), 1);
8064
8064
  return super.find({
8065
8065
  ...options,
8066
- filters: { ...filters },
8066
+ filters: { ...filters, productId: { operator: exports.Where.ISNULL } },
8067
8067
  fields: [
8068
8068
  ...bindFields,
8069
8069
  ...(bindFields.includes('price')
package/index.esm.js CHANGED
@@ -8039,7 +8039,7 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
8039
8039
  options.options?.maximum?.splice(options.options?.maximum.indexOf('price'), 1);
8040
8040
  return super.find({
8041
8041
  ...options,
8042
- filters: { ...filters },
8042
+ filters: { ...filters, productId: { operator: Where.ISNULL } },
8043
8043
  fields: [
8044
8044
  ...bindFields,
8045
8045
  ...(bindFields.includes('price')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect",
3
- "version": "5.3.0-beta.8",
3
+ "version": "5.3.0-beta.9",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },