Rokas
1
Trying to order posts by reading time using Content API JavaScript Client (v 1.5.13), but it does not seem to be working as expected.
Query that is being used:
api.posts.browse({..., order: 'reading_time ASC'});
Getting consistent results which are not ordered by the read time. DESC is not working either.
Hannah
2
You cannot order by reading time as it is a calculated property 
Rokas
3
Well, it puts us in a position of making a client side workaround. Sadly it is expensive both optimizations and dev-time wise.
Could ordering/filtering by calculated properties be something you would consider adding as a feature?