query-9085cf0851895c4995579dd49e25afbe
Mapa dels museus amb pintures a Espanya
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#>
#defaultView:Map
SELECT ?item ?itemLabel ?collectionLabel ?geoloc ?image WHERE {
?item wdt:P31 wd:Q3305213.
?item wdt:P195 ?collection.
?collection wdt:P625 ?geoloc.
?collection wdt:P17 wd:Q29.
SERVICE wikibase:label { bd:serviceParam wikibase:language "ca,es,en". }
OPTIONAL { ?item wdt:P18 ?image. }
}
LIMIT 5000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?collection")
v3("?geoloc"):::projected
v4("?image"):::projected
v1("?item"):::projected
c2(["wd:Q3305213"]):::iri
c6(["wd:Q29"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["ca,es,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P195"--> v2
v2 --"wdt:P625"--> v3
v2 --"wdt:P17"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v4
end