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 !