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
The getPublished function returns more entities than the getMany function, when specifying the same content type in both functions.
Both functions should return the same number of entities.
System Details
contentful-management 11.25.4
Example code demonstrating issue
// ...constentries1=awaitclient.entry.getMany({spaceId : mySpaceId,environmentId: myEnvironmentId,query: {content_type: myContentType,}})constentries2=awaitclient.entry.getPublished({spaceId : mySpaceId,environmentId: myEnvironmentId,contentTypeId: myContentType})// length of entries1 != entries2, but should be
The text was updated successfully, but these errors were encountered:
Problem Description
The
getPublished
function returns more entities than thegetMany
function, when specifying the same content type in both functions.Both functions should return the same number of entities.
System Details
contentful-management 11.25.4
Example code demonstrating issue
The text was updated successfully, but these errors were encountered: