You could try this solution. Put this to the getMatchQuery function.
if(wire('db')->isOperator($operator)) {
return parent::getMatchQuery($query, $table, $subfield, $operator, $value);
} else {
$ft = new DatabaseQuerySelectFulltext($query);
$ft->match($table, $subfield, $operator, $value);
return $query;
}