How do I display a query result as a test?

Hi everyone, I have a query that returns a single string result, for example a Name, and I would like to display it as a simple text widget but after clicking ‘Text’ in the query window what it displays on the page is something like this:
[
{
count: “Name”
}
].

How can overcome this problem and show only the content of the result of the query? Thanks.

Hi Gianluca! You can use {{Query1.data[0].count}} in your Text widget to display the value, where Query1 is the name of your query.

Thanks for the fast response! I was nearly close to the solution: I’ve tried with {{Query1.data[0]}} but obviously it returned as a result “count: Name”