query-97eaa47a289ecd6ee661decaafef2a70
title:Monumenti con identificativo Pietre della memoria creati dal 1° febbraio 2022 SELECT ?monumento ?monumentoLabel WHERE { ?monumento wdt:P131* wd:Q1273 ; wdt:P5726 [] . FILTER ((xsd:integer(SUBSTR(STR(?monumento),33))) > 110770000 ) . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?monumentoLabel
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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 creati dal 1° febbraio 2022
SELECT ?monumento ?monumentoLabel
WHERE {
?monumento wdt:P131* wd:Q1273 ; wdt:P5726 [] .
FILTER ((xsd:integer(SUBSTR(STR(?monumento),33))) > 110770000 ) .
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((" "))
c7(["bd:serviceParam"]):::iri
c4(["wd:Q1273"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["http://www.w3.org/2001/XMLSchema#integer(substring(str(?monumento),'33^^xsd:integer')) > '110770000^^xsd:integer'"]]
f0 --> v2
v2 --"wdt:P131"--> c4
v2 --"wdt:P5726"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end