query-13c0f335c9ce62a79b1f89d713d20f97
Where were people 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#>
SELECT ?person ?personLabel ?birthplaceLabel ?coordinates ?birthdate
WHERE {
?person wdt:P485 wd:Q72941560 . #archives at Stuart A. Rose Manuscript, Archives, and Rare Book Library
?person wdt:P19 ?birthplace . #person has a place of birth
?birthplace wdt:P625 ?coordinates . #birthplace coordinates
?person wdt:P569 ?birthdate . #person has a birthdate
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en".}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?birthdate"):::projected
v2("?birthplace")
v3("?coordinates"):::projected
v1("?person"):::projected
c2(["wd:Q72941560"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
v1 --"wdt:P485"--> c2
v1 --"wdt:P19"--> v2
v2 --"wdt:P625"--> v3
v1 --"wdt:P569"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end