query-23523c3ae7e5f7f374a57fe16aea0744
TODO
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 DISTINCT ?person ?personLabel ?personDescription ?placeofbirthLabel WHERE {
?person (wdt:P20/(wdt:P279*)) wd:Q328468.
?person wdt:P19 ?placeofbirth.
?placeofbirth (wdt:P131*) wd:Q81802.
SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?person"):::projected
v2("?placeofbirth")
a1((" "))
c8(["bd:serviceParam"]):::iri
c3(["wd:Q328468"]):::iri
c10(["es"]):::literal
c6(["wd:Q81802"]):::iri
v1 --"wdt:P20"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P19"--> v2
v2 --"wdt:P131"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end