@comasoft/nestjs 0.0.91 → 0.0.92

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.
@@ -106,7 +106,7 @@ function applyGroupFilter(queryBuilder, group, aliasName, groupFields) {
106
106
  const allParameters = {};
107
107
  groups.forEach((g, index) => {
108
108
  const [field, value] = g.split(/-(.+)/);
109
- const fullField = `${aliasName}.${field}`;
109
+ const fullField = field.includes('.') ? field : `${aliasName}.${field}`;
110
110
  let handler;
111
111
  if (value.includes('__')) {
112
112
  if (field.includes('_at') || field.includes('_date')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comasoft/nestjs",
3
- "version": "0.0.91",
3
+ "version": "0.0.92",
4
4
  "description": "",
5
5
  "private": false,
6
6
  "scripts": {