|
10
|
|
|
What is the restful approach to create compose a group by query
|
|
|
|
9
|
|
|
What is the restful approach for returning to create a group by query
|
|
|
|
8
|
|
|
consider the following http request:
GET /defects?group-by=priority
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.
I thought about something that will return the groups' titles and count before returning the collection, for example:
<content>
<Group val="High" count="567"/>
<Group val="Medium" count="437"/>
<Group val="Low" count="19"/>
<Defect ,,,,>
<Defect ,,,,>
<Defect ,,,,>
</content>
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.
I guess one option for solving this problem would be to define a separate groups resource for defects i.e.:
defects/groups?group1=priority
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.
Bottom line, what is the restful way to return a collection of elements grouped by an attribute?
EDIT 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.
|
|
|
|
7
|
|
|
|
|
|
|
| |
|
Post Made Community Wiki by Community♦
|
|
|
|
|
|
|
6
|
|
|
The RESTful way What is the restful approach for grouping collection elementsreturning a group by query
What is the RESTful way to return a group-by query on collection? consider the following http request:
GET /defects?group-by=priority
I would like the returned collection collection(feed) of defects to be grouped by their priority. And to provide information on how many resources are within each i.e. the returned feed consists of defects(resources) and group infromation.
I thought about something that will return the groups' titles and count before returning the collection, for example:
<content>
<Group val="High" count="567"/>
<Group val="Medium" count="437"/>
<Group val="Low" count="19"/>
<Defect ,,,,>
<Defect ,,,,>
<Defect ,,,,>
</content>
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.
I guess one option for solving this problem would be to define a separate groups resource for defects i.e.:
defects/groups?group1=priority
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.
Bottom line, what is the restful way to return a collection of elements grouped by an attribute?
|
|
|
|
5
|
|
|
What is the RESTful way to return a group-by query on collection?
consider the following http request:
GET /defects?group-by=priority
I would like the returned collection of defects to be grouped by their priority. And to provide information on how many resources are within each group.
I thought about something that will return the groups' titles and count before returning the collection, for example:
<content>
<Group val="High" count="567"/>
<Group val="Medium" count="437"/>
<Group val="Low" count="19"/>
<Defect ,,,,>
<Defect ,,,,>
<Defect ,,,,>
</content>
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.
I guess one option for solving this problem would be to define a separate groups resource for defects i.e.:
defects/groups?group1=priority
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.
Is there a standard
Bottom line, what is the restful way to do that using ATOM format (add information about the groups in the feed itself)?
I am looking for return a simple solution, do you have anycollection of elements grouped by an attribute?
Thanks
|
|
|
|
4
|
|
|
What is the RESTful way to return a group-by query on collection?
consider the following http request:
GET /defects?group-by=priority
I would like the returned collection of defects to be grouped by their priority. And to provide information on how many resources are within each group.
I thought about something that will return the groups' titles and count before returning the collection, for example:
<content>
<Group val="High" count="567"/>
<Group val="Medium" count="437"/>
<Group val="Low" count="19"/>
<Defect ,,,,>
<Defect ,,,,>
<Defect ,,,,>
</content>
The problem with such representation is that the returned queried resource (URL) is Defect defect so the client expects collection of Defects and not the Group element.
I guess one option for solving this problem would be to define a separate groups resource for defects i.e.:
defects/groups?group1=priority
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.
Is there a standard way to do that using ATOM format (add information about the groups in the feed itself)?
I am looking for a simple solution, do you have any?
Thanks
|
|
|
|
3
|
|
|
I am looking for an advice, what What is the RESTful way to return a group-by query on collection?
consider the following http request:
GET /defects?group-by=priority
I would like the returned collection of defects to be grouped by their priority. When the returned collection contains thousands of resources (entities) the task of grouping the data shouldn't be thrown And to the client but done provide information on the server sidehow many resources are within each group.
I thought about something that will return the groups' titles and their count before returning the collection, for example:
<content>
<Group val="High" count="567"/>
<Group val="Medium" count="437"/>
<Group val="Low" count="19"/>
<Entry <Defect ,,,,>
<Entry <Defect ,,,,>
<Entry <Defect ,,,,>
</content>
The problem with such representation is that the returned resource is Defect so the client expects collection of Defects and not the Group element.
Is there a standard way to do that using ATOM format?
|
|
|
|
2
|
|
|
I am looking for an advice, what is the RESTful way to return a group-by collection.?
consider the following http request:
GET /defects?status=new or open&group-by=prioritydefects?group-by=priority
I would like the returned collection of defects to be grouped by their priority. When the returned collection contains thousands of resources (entities) the task of grouping the data shouldn't be thrown to the client but done on the server side.
I thought about something that will return the groups' titles and their count before returning the collection, for example:'<'Group
<content>
<Group val="High" count="567"/>
'<'Group count="567"/>
<Group val="Medium" count="437"/>
'<'Group count="437"/>
<Group val="Low" count="19"/> count="19"/>
<Entry ,,,,>
<Entry ,,,,>
<Entry ,,,,>
</content>
|
|
|
|
1
|
|
|
The RESTful way for grouping collection elements
I am looking for an advice, what is the RESTful way to return a group-by collection.
consider the following http request:
GET /defects?status=new or open&group-by=priority
I would like the returned collection of defects to be grouped by their priority. When the returned collection contains thousands of resources (entities) the task of grouping the data shouldn't be thrown to the client but done on the server side.
I thought about something that will return the groups' titles and their count before returning the collection, for example:
'<'Group val="High" count="567"/>
'<'Group val="Medium" count="437"/>
'<'Group val="Low" count="19"/>
|
|
|