Get posts by list of ID's

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 :slight_smile:

{{#get posts filter="id:['a','b','c']" ...}}

Thanks, i’ll try this)