query-8d4f7282a0c6f23f80ceee865b925b9c
title:Monumenti con identificativo Pietre della memoria SELECT ?monumento ?monumentoLabel WHERE { ?monumento wdt:P131* wd:Q1273 ; wdt:P5726 [] . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?monumentoLabel
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#>
#title:Monumenti con identificativo Pietre della memoria
SELECT ?monumento ?monumentoLabel
WHERE {
?monumento wdt:P131* wd:Q1273 ; wdt:P5726 [] .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?monumentoLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?monumento"):::projected
v1("?monumentoLabel"):::projected
a1((" "))
c5(["bd:serviceParam"]):::iri
c2(["wd:Q1273"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P131"--> c2
v2 --"wdt:P5726"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end