Bug in query when using highlight, fuzzy and publish.from

Enonic version: 7.3.1
OS: Ubuntu

Hi folks, I found problems when doing a query like this:

{
    query: "fulltext('_allText', 'rapporte~1') AND (  publish.from > '2020-07-20T16:32:20' )",
    highlight: {
        properties: {
            'data.body': {}
        }
    }
}

but it works if I do one of the options below:
remove the fuzzy operator in the fulltext parameter ("~1");
remove the publish.from filter;
remove the highlight property.

The error I got on terminal:

The error I got on the controller:

Can you help me?