How to do bulk update by Id, in Strapi using mysql database? I'm trying this
await strapi.query('logs').update({id_in : [12,13]}, {is_transfered : 1});
But getting this error
Error: ER_PARSE_ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ' 13 limit 1' at line 1
What is wrong?