You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading from PayloadCMS 3.24.0 to 3.28.1, a custom endpoint that retrieves all the latest versions of a collection stopped returning all documents when using limit=0. Previously, setting limit=0 allowed fetching all documents, but now it does not work as expected.
Additionally, the documentation states that setting pagination: false disables pagination, but this option is not available for the findVersions method.
Create a custom endpoint that calls local api findVersions with limit=0 to retrieve all latest versions.
Upgrade from PayloadCMS 3.24.0 to 3.28.1.
Call the endpoint and observe that it no longer returns all documents.
Try using pagination: false within findVersions and notice that it's not a valid option.
const latestVersions = await req.payload.findVersions({
collection: collectionSlug,
depth: 2,
sort: "-version.publishedAt",
locale: requestedLocale || "en",
limit: 0, // fetch all not working
pagination: false, // Object literal may only specify known properties, and 'pagination' does not exist in type 'Options<CollectionSlug>'
where: {
latest: {
equals: true, // Only fetch the latest versions
},
},
})
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
After upgrading from PayloadCMS 3.24.0 to 3.28.1, a custom endpoint that retrieves all the latest versions of a collection stopped returning all documents when using limit=0. Previously, setting limit=0 allowed fetching all documents, but now it does not work as expected.
Additionally, the documentation states that setting pagination: false disables pagination, but this option is not available for the findVersions method.
Beta Was this translation helpful? Give feedback.
All reactions