query-a9b38452fc08a0d0a2144d264a4d7ad5
Notable amateur radio operators
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Notable amateur radio operators
#defaultView:Tree
SELECT ?occupation ?occupationLabel ?item ?itemLabel ?callsign
WHERE
{
?item wdt:P5143 ?callsign;
wdt:P106 ?occupation.
FILTER(?occupation != wd:Q1939892).
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
order by ?occupationLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?callsign"):::projected
v3("?item"):::projected
v2("?occupation"):::projected
v1("?occupationLabel"):::projected
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?occupation != 'wd:Q1939892'"]]
f0 --> v2
v3 --"wdt:P5143"--> v4
v3 --"wdt:P106"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end