query-bc776aa1a1935db1de94a83b84d97f48

rq turtle/ttl

TODO

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 ?person ?personLabel ?born ?bornLabel ?borncountryLabel ?coord {
  ?position wdt:P279* wd:Q1711695 .
  ?person wdt:P39 ?position .
  ?person wdt:P19 ?born .
  ?born wdt:P17 ?borncountry .
  ?born wdt:P625 ?coord .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
#defaultView:Map

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?born"):::projected v4("?borncountry") v5("?coord"):::projected v2("?person"):::projected v1("?position") c8(["bd:serviceParam"]):::iri c10(["en"]):::literal c2(["wd:Q1711695"]):::iri v1 --"wdt:P279"--> c2 v2 --"wdt:P39"--> v1 v2 --"wdt:P19"--> v3 v3 --"wdt:P17"--> v4 v3 --"wdt:P625"--> v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end