query-413c4fbcafef813813b23d067ffe0843

rq turtle/ttl


Personen, die an der Gret Palucca Hochschule lernten

----------------------------------------------------------

select ?item ?itemLabel ?date_of_birth ?date_of_death ?itemDescription ?image where { #?item wdt:P69 wd:Q2048456 . ?item wdt:P108 wd:Q2048456

OPTIONAL { ?item wdt:P569 ?date_of_birth. } # Geburtstag OPTIONAL { ?item wdt:P570 ?date_of_death. } # Todestag
OPTIONAL { ?item wdt:P18 ?image. } # Bild SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
} order by ?date_of_birth

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#>
#----------------------------------------------------------
# Personen, die an der Gret Palucca Hochschule lernten
#----------------------------------------------------------
select ?item ?itemLabel ?date_of_birth ?date_of_death ?itemDescription ?image where {
  #?item  wdt:P69 wd:Q2048456 .
  ?item  wdt:P108 wd:Q2048456 

  OPTIONAL { ?item wdt:P569 ?date_of_birth. } # Geburtstag
  OPTIONAL { ?item wdt:P570 ?date_of_death. } # Todestag         
  OPTIONAL { ?item wdt:P18 ?image. }        # Bild
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }     
} 
order by ?date_of_birth

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?date_of_birth"):::projected v3("?date_of_death"):::projected v4("?image"):::projected v2("?item"):::projected c7(["bd:serviceParam"]):::iri c2(["wd:Q2048456"]):::iri c9(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal v2 --"wdt:P108"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P569".-> v1 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P570".-> v3 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end