I'm facing a problem right now.
We and our team are developing a new app with REST. The problem we are facing is we need sometimes get some kind of data and don't know how to create the URI.
for example. If i need a list of products then api/products/ (GET) will do the trick. A single product, api/products/1 (GET)
what if i just need a list of products out of stock, or a products with just 1 item left?
what URI would I user?. I don't think REST can do it.
Thanks you.
BTW: I'm using VS 2012 Web API.