query-1ab1496d0ccb3724559ab2a33b69f638
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:P31 wd:Q328468 ];
wdt:P19 [ 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
a1((" "))
a2((" "))
c8(["bd:serviceParam"]):::iri
c2(["wd:Q328468"]):::iri
c10(["es"]):::literal
c5(["wd:Q81802"]):::iri
a1 --"wdt:P31"--> c2
v1 --"wdt:P20"--> a1
a2 --"wdt:P131"--> c5
v1 --"wdt:P19"--> a2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end