query-d628fba1e0c7b01b03861e0a55382124

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 ?person ?occupation ?personLabel ?occupationLabel {
  ?person wdt:P31 wd:Q5 .
  ?person wdt:P21 wd:Q6581072 .
  ?person wdt:P27 wd:Q142 .
  ?person wdt:P106 ?occupation .
  ?occupation wdt:P279* wd:Q81096 .
  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("?occupation"):::projected v1("?person"):::projected c13(["en"]):::literal c4(["wd:Q6581072"]):::iri c9(["wd:Q81096"]):::iri c11(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c6(["wd:Q142"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P21"--> c4 v1 --"wdt:P27"--> c6 v1 --"wdt:P106"--> v2 v2 --"wdt:P279"--> c9 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end