@zauru-sdk/graphql 2.0.178 → 2.0.179

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.
@@ -1545,7 +1545,7 @@ const getCasesStringQuery = (filters) => {
1545
1545
  conditions.push(`closed: {_eq: ${filters.closed}}`);
1546
1546
  }
1547
1547
  if (filters?.tag_id) {
1548
- conditions.push(`taggings: {tag_id: {_eq: ${filters.tag_id}}}`);
1548
+ conditions.push(`taggings: {tag_id: {_eq: ${filters.tag_id}}, taggeable_type: {_eq: "Case"}}`);
1549
1549
  }
1550
1550
  const whereClause = conditions.length
1551
1551
  ? `where: { ${conditions.join(", ")} },`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zauru-sdk/graphql",
3
- "version": "2.0.178",
3
+ "version": "2.0.179",
4
4
  "description": "Queries de uso común para las aplicación de Zauru.",
5
5
  "main": "./dist/esm/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -21,5 +21,5 @@
21
21
  "devDependencies": {
22
22
  "typescript": "^5.1.6"
23
23
  },
24
- "gitHead": "de1597493fe293d152d099f9e687208df163c938"
24
+ "gitHead": "9ff8292f4e2f3a63ce73f8c44a0136f6a6ff5d06"
25
25
  }