How to make new relationships rank first!

System Information
  • Strapi Version: 4.14.4
  • Operating System: os
  • Database: pgsql
  • Node Version: 18
  • NPM Version: 8
  • Yarn Version: 1.2

I created a one to many following relationship between users and articles.

I want to achieve a list of articles that users follow by querying them. The article list is sorted in descending order according to the order in which the following relationships are created.

That is to say, newly followed articles are ranked first.But the result of my testing is that the newly followed articles are ranked last.

But it seems impossible to sort the order field in the links table。

 const user = await strapi.entityService.findOne('plugin::users-permissions.user',
            userID,
            {
                fields: ['id'],
                populate: {
                    article_likes: true
               }
           }
);