Add support for multiple orderBy fields

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
  }
}
1 Like

I tried that today and it looks like I can actually do that! thanks!