Is there a way to organize the entries in Contentful based on the size of the array of fields property?
For example, this query works successfully:
https://cdn.contentful.com/spaces/cfexampleapi/entries?order=fields.color&content_type=cat&access_token=b4c0n73n7fu1
But how can we retrieve only the cat
entries with the most likes, like this:
https://cdn.contentful.com/spaces/cfexampleapi/entries?order=fields.likes.length&content_type=cat&access_token=b4c0n73n7fu1
This way, I would be able to fetch the top 10 most liked cat entries without having to download all the cat entries locally.