To create last ten published article news component | Community
Skip to main content
New Participant
January 31, 2023
Solved

To create last ten published article news component

  • January 31, 2023
  • 2 replies
  • 1339 views

How to create a component that populates the last ten published article news components in AEM pages.

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Manu_Mathew_

@divanshjohndigital If you want to run it at regular intervals you can use sling schedulers and run a cron job. You may also try using event handlers.

2 replies

Mohit_KBansal
Employee
January 31, 2023

Have you tried the AEM List core component [1], which provides this capability?

 

[1] https://www.aemcomponents.dev/content/core-components-examples/library/core-content/list.html

Manu_Mathew_
New Participant
January 31, 2023

@divanshjohndigital It depends on the use case, probably you can use some published date metadata or use query builder queries for the same.

and use the order by and limit properties-

... orderby=<somenode> orderby.sort=desc p.limit=10

 

New Participant
January 31, 2023

Hi @manu_mathew_ ,

Thanks for ur quick response. Just wanted to check if I use the query builder do i need to run the query each and every time whenever I publish some news article or is there any other way to do this?

 

 

Thanks,

divanshjohndigital 

Manu_Mathew_
Manu_Mathew_Accepted solution
New Participant
January 31, 2023

@divanshjohndigital If you want to run it at regular intervals you can use sling schedulers and run a cron job. You may also try using event handlers.