query-7ca0824dc885db39aa7f8dcd5c51f2bd

rq turtle/ttl

TODO

Use at

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: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") c5(["bd:serviceParam"]):::iri c7(["es"]):::literal c3(["wd:Q81802"]):::iri v1 --"wdt:P19"--> v2 v2 --"wdt:P131"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end