Hello everyone!
Is there any way to get posts from the list of id’s
For ex:
{{#get "posts" id="2,3,4,5" include="tags,authors" as |post|}}
{{#post}}
{{title}}
{{/post}}
{{/get}}
Hello everyone!
Is there any way to get posts from the list of id’s
For ex:
{{#get "posts" id="2,3,4,5" include="tags,authors" as |post|}}
{{#post}}
{{title}}
{{/post}}
{{/get}}
You need to use a filter
{{#get posts filter="id:['a','b','c']" ...}}
Thanks, i’ll try this)