query-7070418f2f6f5a1cbff6e87db4539817

rq turtle/ttl

Propertiesinstance of (P31)located in the administrative territorial entity (P131)country (P17)

Use at

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#>
SELECT DISTINCT ?university ?universityLabel ?city ?cityLabel
WHERE {
  ?university wdt:P31 wd:Q3918 ;
          wdt:P131 ?city .
  ?city wdt:P17 wd:Q664 .
    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; v2("?city"):::projected v1("?university"):::projected c5(["wd:Q664"]):::iri c7(["bd:serviceParam"]):::iri c9(["en"]):::literal c2(["wd:Q3918"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P131"--> v2 v2 --"wdt:P17"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end