query-7a528e2a10774b5e6472c09c14bf3807
Wrong orthograph
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT DISTINCT ?item ?itemLabel WHERE {
?item wdt:P31/wdt:P279* wd:Q1370598 ; schema:description ?itemDesc.
FILTER (lang(?itemDesc) = "fr").
FILTER regex (?itemDesc, "(chapelle|église|abbaye|cathédrale) situé ") .
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemDesc")
a1((" "))
c5(["wd:Q1370598"]):::iri
f0[["regex(?itemDesc,'(chapelle|église|abbaye|cathédrale) situé ')"]]
f0 --> v1
f1[["?itemDesc = 'fr'"]]
f1 --> v1
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
v2 --"schema:description"--> v1