query-bfbaaf135e0eca500f576d8e82a1bcf8

rq turtle/ttl

Propertiesinstance of (P31)subclass of (P279)connects with (P2789)located in the administrative territorial entity (P131)

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?a ?b {
  ?a  wdt:P31/wdt:P279  wd:Q1248784. #... something that is an Airport
  ?a  wdt:P2789+          ?b.        # ^ eventually connected to b
  ?b  wdt:P131*           ?c.        # b eventyally located in ...
  ?c  wdt:P31/wdt:P279  wd:Q515      #... is a city
} LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?a"):::projected v2("?b"):::projected v3("?c") a1((" ")) a2((" ")) c3(["wd:Q1248784"]):::iri c6(["wd:Q515"]):::iri v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P2789"--> v2 v2 --"wdt:P131"--> v3 v3 --"wdt:P31"--> a2 a2 --"wdt:P279"--> c6