query-1022bd635e9f564e9ecb13ba436dbe61

rq turtle/ttl

ÜbersichtenPersonen-Graph:

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#>
#defaultView:Graph
SELECT DISTINCT ?item ?itemLabel ?pic1 ?linkTo ?linkToLabel ?pic2
WHERE {
  ?item wdt:P1433 wd:Q14916674.
  ?item wdt:P921 ?linkTo. # Person als zentrales Thema
  ?linkTo wdt:P31 wd:Q5
  OPTIONAL { ?item wdt:P18 ?pic1 }
  OPTIONAL { ?linkTo wdt:P18 ?pic2 }
  SERVICE wikibase:label {bd:serviceParam wikibase:language "de" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?linkTo"):::projected v3("?pic1"):::projected v4("?pic2"):::projected c10(["de"]):::literal c8(["bd:serviceParam"]):::iri c2(["wd:Q14916674"]):::iri c5(["wd:Q5"]):::iri v1 --"wdt:P1433"--> c2 v1 --"wdt:P921"--> v2 v2 --"wdt:P31"--> c5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end