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:

query {
friendlyUserCollection {
items {
firstName
catCollection(order: [name_ASC]) {
items {
name
}
}
}
}
}