отсюда:
https://github.com/darrin/yaras#good-uri-examples
И там же еще такие примеры:
Filtering is done via query parameters:
GET /magazines?where={"year":2011}
GET /articles?where={"topic":"economy","year":2011}
Two alternative ways you might allow to get to magazines by publisher (though I prefer using the where filter):
GET /publishers/somepublisher/magazines
GET /magazines?where={"publisher":"somepublisher"}
Sorting is done via query parameters:
GET /magazines?sort=[("year", "asc"),("topic", "desc")]
Note: the where clauses above are shown un-encoded for clarity.
Это получается что он в query прямо объекты и массивы передает, или что?
Я просто никогда с GET так не извращался :D
Это как вообще такое?