query-6af727c60790238f3510199e79ad4819
Where were art historians born?
Use at
- https://query.wikidata.org/sparql
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:Map
SELECT ?arthistorianLabel ?coordinates WHERE {
?arthistorian wdt:P31 wd:Q5 ;
wdt:P19 ?birthPlace ;
wdt:P106 wd:Q1792450 .
?birthPlace wdt:P625 ?coordinates .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?arthistorian")
v2("?birthPlace")
v3("?coordinates"):::projected
c8(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c5(["wd:Q1792450"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P19"--> v2
v1 --"wdt:P106"--> c5
v2 --"wdt:P625"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end