Can you use slop and cut off frequency in the same multi match query?

Can you use slop and cut off frequency in the same multi match query?

          "multi_match": {
            "fields": [
              "title^1",
              "description^0.5"
            ],
            "query": "process doctor",
            "operator": "and",
            "cutoff_frequency": 0.3,
            "type": "phrase",
            "slop":1000
          }

It doesn't give an error but changing the cut off frequency doesn't change the results.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.