query-834a3944cc1dec7c5fc41c8f77dd7aec

rq turtle/ttl

Things named after French Presidents

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT ?truc ?presLabel ?trucLabel ?coord ?layer WHERE {
 {
 SELECT DISTINCT ?truc (SAMPLE(?coord) AS ?coord) (SAMPLE(?layer) AS ?layer) WHERE {
 ?pres wdt:P39 wd:Q191954 ;
 rdfs:label ?layer.
 FILTER((LANG(?layer)) = "fr")

 ?truc wdt:P138 ?pres ;
 wdt:P625 ?coord.
 }
 GROUP BY ?truc ?trucLabel
 }
 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; v5("?coord"):::projected v5("?layer"):::projected v2("?pres") v3("?truc"):::projected c3(["wd:Q191954"]):::iri c8(["bd:serviceParam"]):::iri c1(["fr"]):::literal f0[["?layer = 'fr'"]] f0 --> v5 v2 --"wdt:P39"--> c3 v2 --"rdfs:label"--> v5 v3 --"wdt:P138"--> v2 v3 --"wdt:P625"--> v5 bind3[/"sample(?coord)"/] v5 --o bind3 bind3 --as--o v5 bind4[/"sample(?layer)"/] v5 --o bind4 bind4 --as--o v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c1 end