query-ea04754c5e80b731068bc0653839fc78
Biblioteche in Italia
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#>
#Libraries in Italy
#defaultView:Map
SELECT DISTINCT ?library ?libraryLabel ?coor ?image
WHERE
{
?library wdt:P31/wdt:P279* wd:Q7075 .
?library wdt:P17 wd:Q38 .
OPTIONAL { ?library wdt:P625 ?coor }
OPTIONAL { ?library wdt:P18 ?image }
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en" }
}
ORDER BY ?libraryLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coor"):::projected
v4("?image"):::projected
v2("?library"):::projected
v1("?libraryLabel"):::projected
a1((" "))
c3(["wd:Q7075"]):::iri
c5(["wd:Q38"]):::iri
c9(["bd:serviceParam"]):::iri
c11(["it,en"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P17"--> c5
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P625".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end