@solidstarters/solid-core 1.2.80 → 1.2.81

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidstarters/solid-core",
3
- "version": "1.2.80",
3
+ "version": "1.2.81",
4
4
  "description": "This module is a NestJS module containing all the required core providers required by a Solid application",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -182,7 +182,7 @@ export class CrudHelperService {
182
182
  }
183
183
 
184
184
  if (filters) {
185
- qb.where(new Brackets(whereQb => {
185
+ qb.andWhere(new Brackets(whereQb => {
186
186
  this.applyFilters(whereQb, filters, entityAlias, qb);
187
187
  }));
188
188
  }