query-00675fdb1c823f812471ba16c2a4c4a8

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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?person ?personLabel  WHERE {
  ?item wdt:P31 wd:Q7278 .
  ?item wdt:P17 wd:Q38 .
  ?item p:P210 ?statement .
  ?statement ps:P210 ?person
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
} ORDER BY ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?itemLabel"):::projected v4("?person"):::projected v3("?statement") c4(["wd:Q38"]):::iri c8(["bd:serviceParam"]):::iri c2(["wd:Q7278"]):::iri c10(["en"]):::literal v2 --"p:direct/P31"--> c2 v2 --"p:direct/P17"--> c4 v2 --"p:P210"--> v3 v3 --"p:statement/P210"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end