Query parser in $search.text with AND operator - how to configure

I’m using MongoDB atlas search pipeline with a simple search query:

$search: {
	text: {
		query: 'multi word query',
		path: [...some fields],
	},
},

Right now it looks like search condition is split into tokens and joined using OR operator.
Is there any way to configure Atlas Search so that it concatenates word with AND, so all passed in words are required to exist in matched documents?

In the provided example:

  • All returned documents have ‘mutli’, ‘word’ and ‘query’ in any of fields in path.

It looks like it is supported by Lucene standard query parser - (q.op option)