query-b292820f420038a72616bdeca60481fa
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?ChurchID ?ChurchName ?BeWeb WHERE {
?ChurchID wdt:P5611 ?BeWeb.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "it,[AUTO_LANGUAGE],en".
?ChurchID rdfs:label ?ChurchName.
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?BeWeb"):::projected
v1("?ChurchID"):::projected
v3("?ChurchName"):::projected
c5(["it,#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["bd:serviceParam"]):::iri
v1 --"wdt:P5611"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
v1 --"rdfs:label"--> v3
end