Which of the following URLs is more RESTful compliant when it comes to fetch only items that have a certain value for attribute?
GET: /items/attribute/{value}GET: /items/findByAttribute?attribute={value}GET: /items?attribute={value}
Having in mind that GET: /items returns all items.
Example
GET: /shirts/color/FF9900GET: /shirts/findByColor?color=FF9900GET: /shirts?color=FF9900