How can I paginate blog articles based on tags?

I am trying to paginate blog articles based on tags. I have tried the code below, but it still returns all articles. Is it possible to filter arrays that have more the 50?

{% paginate blogs['recipe-database'].articles | where 'tags','Chocolate'  by 10 %}
     
      	{% for article in blog.articles %}
     
           ## {{article.title}}
     
        {% endfor %}
      {% endpaginate %}