How to I loop through taxonomy using OR instead of AND in Twig?

Hi, simple question.

{% for feature in taxonomy.findTaxonomy({'category':['News','Links'] })and.order('date', 'desc').slice(0, 4) %}

The above Twig loops and find articles in my blog tagged with News and Links but I want to find all articles tagged with either News or Links

Actually findTaxonomy takes an optional second param (and | or), defaults to and.

{% for feature in taxonomy.findTaxonomy({'category':['News','Links'] }, 'or') %}
---