query-171549e76934bfa44112c5a00ddeb350
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?author ?authorLabel ?GND ?birthLocation ?coordinates WHERE
{
VALUES ?GND {"118561359"}
?author wdt:P227 ?GND ;
wdt:P19 ?birthLocation .
?birthLocation wdt:P625 ?coordinates .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_Language],de". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?GND"):::projected
v2("?author"):::projected
v3("?birthLocation"):::projected
v4("?coordinates"):::projected
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_Language#93;,de"]):::literal
bind0[/VALUES ?GND/]
bind0-->v1
bind00(["118561359"])
bind00 --> bind0
v2 --"wdt:P227"--> v1
v2 --"wdt:P19"--> v3
v3 --"wdt:P625"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end