Hi, i think could be great if it possible to do bulk update of multiple contents using squidex filter. Currently we have to do request to squidex API on each item. Just a little SQL logick inside squidex / mongodb.
UPDATE table_name
SET column1 = value1
WHERE condition;
Currently i do some query with filter. This query return me about 100 of records. It is possible to do using squidex API do update of those 100 records?
Now we are doing this update one by one which is take much time and server resources.