query-6c65c82bb262ec6ac6aebbb09e3c7824
10:11, 17 June 2022 (UTC)) talk (Fl.schmittwhich fails with an error "Encountered " ";" "; "" at line 4, column 47." What am i doing wrong? Thanks for your help! And here is your query: 10:28, 17 June 2022 (UTC)) talk (Ayack Wikidata:WikiProject France/Églises/14 Not exactly what you've requested, but you could have a look at this page for example : Fl.schmitt@
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#>
#defaultView:ImageGrid
SELECT DISTINCT ?item ?itemLabel ?lieuLabel ?image WHERE {
?item (wdt:P31/(wdt:P279*)) wd:Q16970;
wdt:P131 ?lieu.
?lieu (wdt:P131*) wd:Q18677875.
?item wdt:P18 ?image.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?image"):::projected
v1("?item"):::projected
v2("?lieu")
a1((" "))
c8(["bd:serviceParam"]):::iri
c5(["wd:Q18677875"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wd:Q16970"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P131"--> v2
v2 --"wdt:P131"--> c5
v1 --"wdt:P18"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end