Would you be able to log the generated query before it is dispatched? It should give you some insight into the generated query being sent to the server such that you can identify what is different.
Hi @brett19,
thank you for the response.
sure,
in attachment there are the Chrome ‘developer Tools’ screenshot,
the ‘query_json_before.png’ is the print query before to send the request.
the ‘query_json_after.png’ is the print response, there is only the hits.
You can see that in the response there is not a Highlight, but only locations.
But, i have found a workaround for return the highlight parameter, it is not use the query.highlight() method, but i add the variable manually so ‘query.data.highlight = {};’ (to replicate the Postman query)
I still want to try to use the sdk totally, without the workaround.