I see you can sort by 1:1 table fields, but how do you sort a nested table? For example if you have a list of people, and each person has a list of cars:
{
personList {
items {
cars {
items {
vin
}
}
}
}
}
How would you sort the cars data by vin?