query-9fa20cbb926d16bc408e1e3eb341ed72
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?item ?birth ?pob
WHERE
{
VALUES ?item { wd:Q6701 }
OPTIONAL {?item wdt:P569 ?birth .}
{
SELECT ?pob
WHERE
{
VALUES ?item { wd:Q6701 }
OPTIONAL {?item wdt:P19 ?pob .}
}
LIMIT 1
}