query-3f2dd5d810fb6b4385174aacbfebffd7
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 ] .
OPTIONAL { ?person wdt:P19 ?placeofbirth. }
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((" "))
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 optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P19".-> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end