Get Total Count of Member.paid Posts

Does anyone know how to get a total count for the number of posts that are for members.paid only in Ghost 3.x?

So far I have the following. But I cant seem to find the correct filter to only show the members.paid articles.

{{#get "posts" limit="all" }}
    {{posts.length}}
{{/get}}

Thanks,

This should do it:

{{#get "posts" limit="all" filter="visibility:paid"}}
    {{posts.length}}
{{/get}}
4 Likes