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
Hi,
I got an Internal Server error on the getEntries requests.
The only way to retrieve the entries without errors is removing the include_metadata inside the contentstack.ts
result = await entryQuery
.addParams({include_metadata: 'true'})
.addParams({include_applied_variants: true})
.find() as { entries: T[] }
like this
result = await entryQuery
.addParams({include_applied_variants: true})
.find() as { entries: T[] }
Even using directly the CDA the metadata breaks the request.
I just wanted to report the problem
The text was updated successfully, but these errors were encountered:
Hi,
I got an Internal Server error on the getEntries requests.
The only way to retrieve the entries without errors is removing the include_metadata inside the contentstack.ts
like this
Even using directly the CDA the metadata breaks the request.
I just wanted to report the problem
The text was updated successfully, but these errors were encountered: