Delete multiple issues by JQL
Deletes every issue that matches a JQL expression. Add a WHERE condition (e.g. Where 1=1) so the connector uses the lookup path, then supply the JQL in WITH (jql='...'). Use with care; all matching issues are removed.
DELETE FROM Issues
Where 1=1
WITH (jql='status=done' , ContinueOn404Error=0)
--WITH (jql='key in(10001, 10002, 10003)' , ContinueOn404Error=0)
--WITH (jql='key in(CS-1, CS-2, CS-3)', ContinueOn404Error=0)