Transform names in dashboard

I have a dashboard where I have two queries to pull two types of info from the same API. I tried to create transforms that change the names, but the query name still appears and the second query is still listed as ‘result’. Is there a way to totally rename the titles coming from the api?


which data source are you using and what does the json data returned look like pre transformation? please post sample json not as an image but as text (obfuscate any sensitive data)

The data source is Infinity calling a Cisco ETD API.
The first query, called ETD reports back this JSON:

{
    "malicious":  0,
    "spam":  100,
    "phishing":  0,
    "graymail":  4779,
    "bec":  1,
    "scam":  4
}

The second query uses the same data source and API and returns this JSON:

{
    "incoming":  10799,
    "outgoing":  1041,
    "internal":  26225
}

I’m only interested in the incoming field for this query.