query-a47ef38e2de35fedd53ea28fdc9c5b9e

rq turtle/ttl

Werke von Diether Heisig

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:ImageGrid
SELECT ?item ?itemLabel ?istEinLabel ?itemDescription ?liegtinLabel ?pic ?loc ?jahr ?osm
WHERE {
  ?item wdt:P170 wd:Q63929521.   # Urheber ist Diether Heisig
  ?item wdt:P31 ?istEin.
  OPTIONAL { ?item wdt:P625 ?loc }
  OPTIONAL { ?item wdt:P131 ?liegtin }
  OPTIONAL { ?item wdt:P571 ?datum; BIND(YEAR(?datum) AS ?jahr) }
  OPTIONAL { ?item wdt:P18 ?pic }
  OPTIONAL { ?item wdt:P11693 ?osm }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
} ORDER BY ?datum 
LIMIT 50  # 40 in 530 ms (Oktober 2023)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?datum") v3("?istEin") v2("?item"):::projected v6("?jahr"):::projected v5("?liegtin") v4("?loc"):::projected v8("?osm"):::projected v7("?pic"):::projected c10(["bd:serviceParam"]):::iri c2(["wd:Q63929521"]):::iri c12(["de,en"]):::literal v2 --"wdt:P170"--> c2 v2 --"wdt:P31"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P625".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P131".-> v5 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P571".-> v1 bind0[/"year-from-dateTime(?datum)"/] v1 --o bind0 bind0 --as--o v6 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v7 end subgraph optional4["(optional)"] style optional4 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P11693".-> v8 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end