It would be really useful, to be able to order by more than one field
for example
query {
allArtists(
orderBy: [name_ASC, rating_DESC]
) {
id
name
rating
}
}
It would be really useful, to be able to order by more than one field
for example
query {
allArtists(
orderBy: [name_ASC, rating_DESC]
) {
id
name
rating
}
}
I tried that today and it looks like I can actually do that! thanks!
I tried that it actually works