Data processing
You can modify the fetched data using result
property :
{
result: r => r.field
}
And then sort using sort
property :
{
sort: (a, b) => a - b
}
You can read more about sorting in the documentation of the Array.sort() method.