suppose my curl url for DELETE request looks like
website.com/res/resource_name?myid=(1,2,3,4)
How should I create an angular resource wherein I simply pass an array of IDs and get this rest URL?
note:
I am using restSQL, this is an example for deleting a single item http://restsql.org/doc/ref/ResDeleteQuery.html
I can delete a single item, but I want to delete multiple at the same time. The above rest URL works for me via curl request.