Wildcard query in multi match cross fields

Hello,
Is there a way to add a wildcard option in a multi match type cross field query?

                "query" => [
                "bool" => [
                    "should" => [
                        "multi_match" => [
                            "type" => "cross_fields",
                            "fields" => ["name", "city^50", "sessions^50"],
                            "query" => $search,
                            "operator" => "OR",
                            "boost" => 3
                        ],
                    ],
                ],

Thanks a lot !

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