After applying filters on collection, I’m selecting records on all the pages.
As the message and filters’ count state, there are 37 records.
But after smart action is applied, only 15 items are updated.
ids
for update are retrieved from the request body in the following manner:
const attributes = request.body.data.attributes;
jobParams.ids = attributes.ids;
Expected behavior
All selected 37 ids (from all the pages) are sent to the back-end.
Actual behavior
Only ids selected on the current page are sent.