query-7bad0db1259a6ba4dd681858b8ddb81d

rq turtle/ttl

Personenliste - Alle Personen, die olympische Medalien gewonnen haben

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#------------------------------------------------
# Winner of olympic medals
#-----------------------------------------------
#defaultView:Table
SELECT distinct ?item ?itemLabel ?itemDescription ?medalLabel  WHERE {
  ?item wdt:P31 wd:Q5.                # human
  #?item wdt:P27 wd:Q183.             # country
  #?item wdt:P106 wd:Q10843402.       # occupation
  OPTIONAL { ?item p:P1344 [  pq:P166 ?medal ]  . }    # win medal   
  ?medal wdt:P279 wd:Q636830 .                         # medal is subclass of olympic medal

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?medal") a1((" ")) c8(["bd:serviceParam"]):::iri c6(["wd:Q636830"]):::iri c2(["wd:Q5"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"p:direct/P31"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; a1 -."p:qualifier/P166".-> v2 v1 --"p:P1344"--> a1 end v2 --"p:direct/P279"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end