'Json use Jq to parse, read and return true if enrty found

Apologies if this is basic but the doc for jq is not so good i have this json:

{
    "jsonrpc": "2.0",
    "result": [{
        "hostid": "10084",
        "host": "Zabbix server",
        "interfaces": [{
            "interfaceid": "1",
            "ip": "127.0.0.1"
        }]
    }, {
        "hostid": "10336",
        "host": "AUTO",
        "interfaces": [{
            "interfaceid": "4",
            "ip": "1.2.3.4"
        }]
    }, {
        "hostid": "10337",
        "host": "AUTOSERVER",
        "interfaces": [{
            "interfaceid": "5",
            "ip": "4.5.6.7"
        }]
    }, {
        "hostid": "10348",
        "host": "Server00001",
        "interfaces": [{
            "interfaceid": "16",
            "ip": "4.5.6.7"
        }]
    
    }],
    "id": 2
}

i need to find a way to use jq to find if "Server0001" exists in one of the hosts i know i can use grep but i prefer using jq here, like select.. any help or ref toa good doc would be much appriciated

jq


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source