query-a0cc88f2be3c17b631d84def43057d39

rq turtle/ttl

Namen der GeschÃĪdigten von Orten des Gestapoterrors | Leandra Janus(Q2026714)victim of the Nazi regime (P2868)subject has role (Q106996250)Place of Gestapo terror (P31)instance of

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Table
SELECT ?place ?placeLabel ?victim ?victimLabel WHERE {
  ?place wdt:P31 wd:Q106996250. #Ort des Gestapoterrors
  OPTIONAL { ?victim wdt:P2868 wd:Q2026714. } #Opfer des Nationalsozialismus
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "de".
    ?place rdfs:label ?placeLabel.
    ?victim rdfs:label ?victimLabel.
  }
}
ORDER BY (?place)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?place"):::projected v3("?placeLabel"):::projected v2("?victim"):::projected v4("?victimLabel"):::projected c2(["wd:Q106996250"]):::iri c8(["de"]):::literal c4(["wd:Q2026714"]):::iri c6(["bd:serviceParam"]):::iri v1 --"wdt:P31"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P2868".-> c4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 v1 --"rdfs:label"--> v3 v2 --"rdfs:label"--> v4 end