I'm designing a RESTful API for a search function that looks something like this:
http://example.com/books/?author=John+Smith&title=Brain+Surgery+For+Dummies
Looking at this URI, I don't immediately know which these two queries the client is performing:
a) all books by John Smith, plus all books entitled "Brain Surgery for Dummies"
b) all editions of "Brain Surgery for Dummies" authored by John Smith.
How might I redesign my URIs to make this more explicit?