What is the restful approach to compose a group by query - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:15:07Z http://stackoverflow.com/feeds/question/424587 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/424587/what-is-the-restful-approach-to-compose-a-group-by-query 2 What is the restful approach to compose a group by query LiorH 2009-01-08T15:16:14Z 2009-02-05T20:11:03Z <p>consider the following http request:</p> <pre><code>GET /defects?group-by=priority </code></pre> <p>I would like the returned collection(feed) of defects to be grouped by their priority. i.e. the returned feed consists of defects(resources) and group infromation.</p> <p>I thought about something that will return the groups' titles and count before returning the collection, for example:</p> <pre><code>&lt;content&gt; &lt;Group val="High" count="567"/&gt; &lt;Group val="Medium" count="437"/&gt; &lt;Group val="Low" count="19"/&gt; &lt;Defect ,,,,&gt; &lt;Defect ,,,,&gt; &lt;Defect ,,,,&gt; &lt;/content&gt; </code></pre> <p>The problem with such representation is that the queried resource (URL) is defect so the client expects collection of Defects and not the Group element.</p> <p>I guess one option for solving this problem would be to define a separate groups resource for defects i.e.:</p> <pre><code> defects/groups?group1=priority </code></pre> <p>that will return collection of groups and their count, and then the client can query the defects resource for the data itself. But this design is cumbersome and requires extra round trips, not to mention possible consistency problems when defects was added\removed between the call to the group resource and the defects resource. </p> <p>Bottom line, what is the restful way to return a collection of elements grouped by an attribute?</p> <p><strong>EDIT</strong> I first thought of that this problem should be addressed by the ATOM publishing standard. But even if ATOM had addressed it, I still need to support other representations (XML, JSON) so I am looking for a pattern more inherent in the RESTful approach.</p> http://stackoverflow.com/questions/424587/what-is-the-restful-approach-to-compose-a-group-by-query/428467#428467 3 Answer by DanSingerman for What is the restful approach to compose a group by query DanSingerman 2009-01-09T15:24:49Z 2009-01-09T15:24:49Z <p>I don't think what you are asking for is possible.</p> <p>If the client is expecting a collection of defects, then you can order by priority, but </p> <pre><code>a group of defects != a defect </code></pre> <p>So you can't return a collection of groups.</p> <p>You could add a nasty hack to add attributes to the defect resource for priority and priority-group-size, but that seems bad to me.</p> <p>I think the correct Restful ways to do it are:</p> <ul> <li>Design the service to return groups of defects </li> </ul> <p>or </p> <ul> <li>Return defects ordered by priority, and let the client do the grouping and counting of the resources in each group.</li> </ul> http://stackoverflow.com/questions/424587/what-is-the-restful-approach-to-compose-a-group-by-query/446419#446419 1 Answer by Hank Gay for What is the restful approach to compose a group by query Hank Gay 2009-01-15T11:26:59Z 2009-01-15T11:26:59Z <p>Based on a comment to <a href="http://stackoverflow.com/questions/424587/what-is-the-restful-approach-for-returning-a-group-by-query#428467">this answer</a>, it seems like this needs to support paging. In that case, I recommend you check out <a href="http://bitworking.org/projects/atom/rfc5023.html" rel="nofollow" title="The AtomPub, a/k/a Atom Publishing Protocol RFC">AtomPub</a>, and specifically how it <a href="http://bitworking.org/projects/atom/rfc5023.html#partial-lists" rel="nofollow" title="Partial Lists in the AtomPub world">handles paging</a>. Perhaps the same general approach will work for you; if you're really lucky, you can leverage the entire standard.</p>