query-ce69e25c39907013c5a5dee6bea9ca57

rq turtle/ttl

églises des PO :

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?article WHERE {
  ?item wdt:P31/wdt:P279* wd:Q16970 ; wdt:P131 ?commune .
  ?commune wdt:P131 wd:Q12709 .
  ?article schema:about ?item .
  ?article schema:isPartOf <https://fr.wikipedia.org/>.

    SERVICE wikibase:label {
       bd:serviceParam wikibase:language "fr"
    }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article"):::projected v2("?commune") v1("?item"):::projected a1((" ")) c5(["wd:Q12709"]):::iri c10(["bd:serviceParam"]):::iri c8([https://fr.wikipedia.org/]):::iri c3(["wd:Q16970"]):::iri c12(["fr"]):::literal v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P131"--> v2 v2 --"wdt:P131"--> c5 v3 --"schema:about"--> v1 v3 --"schema:isPartOf"--> c8 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end