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
When the "Select All" feature is used and an action is triggered, we need to reconstruct the complete query within the action request.
Since the query might include various filters and custom elements, it’s not simple to rebuild it during the action request. To handle this, we serialize and encrypt the entire query (for security) before passing it along with the action request. (An alternative approach could be to only serialize when "Select All" is pressed, but that’s a discussion for another time.)
We’re always open to feedback and suggestions for improvement.
One alternative might be to extract all the IDs from the query, encrypt them as an array, and then retrieve the records using those IDs.
Originally posted by @Paul-Bob in #3151 (comment)
This approach is not suitable for scaling (millions of IDs may break it)
For now, let's make some DX improvements:
Tasks
The text was updated successfully, but these errors were encountered: