query-200fb0aa5742d50de16411036427917e
Searching for people with a residence within X km from a given locationHi All, I've been using the following query to find African American artists in my museum's collections who have a residence listed in their record:
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 ?item ?itemLabel ?itemDescription ?residence ?residenceLabel WHERE {
?item wdt:P31 wd:Q5;
wdt:P172 wd:Q49085;
wdt:P6379 wd:Q510324;
wdt:P551 ?residence
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?residence"):::projected
c6(["wd:Q510324"]):::iri
c9(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c4(["wd:Q49085"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P172"--> c4
v1 --"wdt:P6379"--> c6
v1 --"wdt:P551"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end