query-e0780509834c78a9e7a89aafe7cb1f83

rq turtle/ttl

title:Monumenti con link a resistenzatoscana.org SELECT ?monumento ?monumentoLabel WHERE { ?monumento wdt:P973 ?url . FILTER(REGEX(STR(?url), "resistenzatoscana")) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?monumentoLabel

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Monumenti con link a resistenzatoscana.org
SELECT ?monumento ?monumentoLabel
WHERE {
  ?monumento wdt:P973 ?url . FILTER(REGEX(STR(?url), "resistenzatoscana"))
  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; v3("?monumento"):::projected v1("?monumentoLabel"):::projected v2("?url") c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["regex(str(?url),'resistenzatoscana')"]] f0 --> v2 v3 --"wdt:P973"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end