query-aaffbc767a296ad4256329657e9236de
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select distinct ?item ?itemLabel ?ICAO
WHERE
{
?item p:P239 [ps:P239 ?ICAO; prov:wasDerivedFrom [pr:P143 wd:Q845993]].
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} order by ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?ICAO"):::projected
v3("?item"):::projected
v1("?itemLabel"):::projected
a1((" "))
a2((" "))
c3(["wd:Q845993"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
a1 --"p:statement/P239"--> v2
a2 --"p:reference/P143"--> c3
a1 --"prov:wasDerivedFrom"--> a2
v3 --"p:P239"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end