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
I am getting "ValidationException: Invalid FilterExpression: Expression size has exceeded the maximum allowed size" when I try to publish a large object.
It looks like the issue is happing because of the filter logic, in getFilteredSubs.ts. Because I try to publish big a big object with nested objects inside the function creates a massive filter expression which results in the "Invalid FilterExpression: Expression size has exceeded" error.
In my use case, I don't need the filter nested logic, seems like a possible solution is to allow configuring to filter nested objects.
For example, I only need to filter by one argument (like userId).
The text was updated successfully, but these errors were encountered:
I am getting "ValidationException: Invalid FilterExpression: Expression size has exceeded the maximum allowed size" when I try to publish a large object.
It looks like the issue is happing because of the filter logic, in
getFilteredSubs.ts
. Because I try to publish big a big object with nested objects inside the function creates a massive filter expression which results in the "Invalid FilterExpression: Expression size has exceeded" error.In my use case, I don't need the filter nested logic, seems like a possible solution is to allow configuring to filter nested objects.
For example, I only need to filter by one argument (like userId).
The text was updated successfully, but these errors were encountered: