query-8df19e82f1fce170b1e4dc8a69e7780a
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?airport ?airportLabel ?airportIn ?airportInLabel WHERE {
?airport wdt:P239 "RJAA".
{ ?airport wdt:P931 ?airportIn. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?airport"):::projected
v2("?airportIn"):::projected
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
c2(["RJAA"]):::literal
v1 --"wdt:P239"--> c2
v1 --"wdt:P931"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end