Reputation: 69
I am trying to use the musicBrainz api for getting the discography of an artist using the following method: http://www.musicbrainz.org/ws/2/release/?query=artist:eminem
but i get a lot of unsorted and repeated data. I know that i can use keywords (AND, OR, etc) but i do not really know how to sort it by date or filter repeated data. Is there a way to do this in the rest call or have i to implement these sort methods in my code?
Upvotes: 2
Views: 622
Reputation: 2643
About repeated data: It sounds what you want are release groups, not releases. For example a certain album is one release group on MusicBrainz, but usually has multiple different releases in this group due to different editions of an album.
About sorting: Unfortunately cou can't sort the data while querying the web service yet. There is a ticket for that: MBS-5636. If you do want to sort the data, you have to fetch all of it and sort it yourself.
Upvotes: 1