Can you OR between fields with the Contentful Delivery API?

I have entries that have category buckets, (i.e. a Topics bucket and Jurisdictions bucket). Is there a way to filter the entries using OR logic instead of AND logic using the Delivery API? Can I get entries the contain passed topics OR Jurisdictions?

For example my query params will look like:
{
content_type: pageContentType,
fields.topics.sys.id[in]: ‘1234,4567,8965’,
fields.jurisdictions.sys.id[in]: ‘34532,67653,243425’
}

Is there a way to have OR logic between these fields?