@commercetools-frontend-extensions/export-resources-modal 1.3.6 → 1.3.7
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.
|
@@ -213,7 +213,7 @@ function buildGraphQuery(exportSettings) {
|
|
|
213
213
|
})
|
|
214
214
|
}],
|
|
215
215
|
variables: {
|
|
216
|
-
where: "id in (".concat(_mapInstanceProperty__default["default"](_context = exportSettings.selectedResourceIds).call(_context, id => "
|
|
216
|
+
where: "id in (".concat(_mapInstanceProperty__default["default"](_context = exportSettings.selectedResourceIds).call(_context, id => "\"".concat(id, "\"")).join(', '), ")")
|
|
217
217
|
}
|
|
218
218
|
});
|
|
219
219
|
case EXPORT_SELECTION_TYPES.ONLY_MATCHING:
|
|
@@ -213,7 +213,7 @@ function buildGraphQuery(exportSettings) {
|
|
|
213
213
|
})
|
|
214
214
|
}],
|
|
215
215
|
variables: {
|
|
216
|
-
where: "id in (".concat(_mapInstanceProperty__default["default"](_context = exportSettings.selectedResourceIds).call(_context, id => "
|
|
216
|
+
where: "id in (".concat(_mapInstanceProperty__default["default"](_context = exportSettings.selectedResourceIds).call(_context, id => "\"".concat(id, "\"")).join(', '), ")")
|
|
217
217
|
}
|
|
218
218
|
});
|
|
219
219
|
case EXPORT_SELECTION_TYPES.ONLY_MATCHING:
|
|
@@ -188,7 +188,7 @@ function buildGraphQuery(exportSettings) {
|
|
|
188
188
|
})
|
|
189
189
|
}],
|
|
190
190
|
variables: {
|
|
191
|
-
where: "id in (".concat(_mapInstanceProperty(_context = exportSettings.selectedResourceIds).call(_context, id => "
|
|
191
|
+
where: "id in (".concat(_mapInstanceProperty(_context = exportSettings.selectedResourceIds).call(_context, id => "\"".concat(id, "\"")).join(', '), ")")
|
|
192
192
|
}
|
|
193
193
|
});
|
|
194
194
|
case EXPORT_SELECTION_TYPES.ONLY_MATCHING:
|
package/package.json
CHANGED