query-6454e753a94ca607c945c5fc3d61f8b1
Conférences épiscopales
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?id WHERE {
?item wdt:P12509 ?id
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" } .
}
order by asc(?id)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?id"):::projected
v2("?item"):::projected
c3(["bd:serviceParam"]):::iri
c5(["fr"]):::literal
v2 --"wdt:P12509"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end