@jungvonmatt/contentful-migrations 5.2.2 → 5.2.3
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/lib/backend.js +1 -1
- package/package.json +1 -1
package/lib/backend.js
CHANGED
|
@@ -294,7 +294,7 @@ const migrateToTagStorage = async (config) => {
|
|
|
294
294
|
const getMigrationVersions = async (config) => {
|
|
295
295
|
const { migrationContentTypeId } = config;
|
|
296
296
|
const client = await getEnvironment(config);
|
|
297
|
-
const { items } = await client.getEntries({ content_type: migrationContentTypeId });
|
|
297
|
+
const { items } = await client.getEntries({ content_type: migrationContentTypeId, limit: 1000 });
|
|
298
298
|
|
|
299
299
|
return (items || []).map((item) => parseInt(item.sys.id, 10));
|
|
300
300
|
};
|