query-af1535bafa6b76bb39456fbd6cb70ce2
Map of museums in which a specific maker has works in the collection (P6379)has works in the collection )) (Q2336473)Paulus Constantijn la Fargue Shows a map of the museums in which a specific maker (in this case
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 ?museumLabel ?geocoordinates {
#Map with 'works in collection' of a specific maker
#defaultView:Map
VALUES ?maker { wd:Q2336473 } #Qid of the maker
?maker wdt:P6379 ?museum . #has works in collection
?museum wdt:P625 ?geocoordinates #geocoordinates
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;
v3("?geocoordinates"):::projected
v1("?maker")
v2("?museum")
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?maker/]
bind0-->v1
bind00(["wd:Q2336473"])
bind00 --> bind0
v1 --"wdt:P6379"--> v2
v2 --"wdt:P625"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end