Ordering Nested Collections

You can order any collection if it contains a many reference field with a validation rule that accepts only entries from a single content type:

1query {
2 friendlyUserCollection {
3 items {
4 firstName
5 catCollection(order: [name_ASC]) {
6 items {
7 name
8 }
9 }
10 }
11 }
12}