query-de97398e2049819cf66dbfb6aac2d28c

rq turtle/ttl

TODO

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#>
SELECT ?Urheber ?UrheberLabel ?Ort ?OrtLabel WHERE {
  ?Urheber wdt:P170 wd:Q98908523.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "de".
    ?Urheber rdfs:label ?UrheberLabel.
  }
  OPTIONAL { ?Urheber wdt:P276 ?Ort. }
  SERVICE <https://query.wikidata.org/sparql> {
    SERVICE wikibase:label {
      bd:serviceParam wikibase:language "de".
      ?Ort rdfs:label ?OrtLabel.
    }
  }
}
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?Ort"):::projected v4("?OrtLabel"):::projected v1("?Urheber"):::projected v2("?UrheberLabel"):::projected c6(["de"]):::literal c4(["bd:serviceParam"]):::iri c2(["wd:Q98908523"]):::iri v1 --"wdt:P170"--> c2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 v1 --"rdfs:label"--> v2 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P276".-> v3 end subgraph s2["https://query.wikidata.org/sparql"] style s2 stroke-width:4px; subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 v3 --"rdfs:label"--> v4 end end