query-b57e665682999bd641993929a7c065d1

rq turtle/ttl

Liste des dirigeants des filiales du gouvernement de la République française

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?ministre ?ministreLabel ?starttime ?endtime ?ministere ?ministereLabel WHERE {
  wd:Q1450662 wdt:P355 ?ministere.
  ?ministere p:P1037 ?statement.
     ?statement ps:P1037 ?ministre.
     OPTIONAL {?statement pq:P580 ?starttime.}
     OPTIONAL {?statement pq:P582 ?endtime.}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}
ORDER BY DESC(?starttime) DESC(?endtime)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?endtime"):::projected v3("?ministere"):::projected v5("?ministre"):::projected v1("?starttime"):::projected v4("?statement") c8(["bd:serviceParam"]):::iri c10(["fr"]):::literal c1(["wd:Q1450662"]):::iri c1 --"p:direct/P355"--> v3 v3 --"p:P1037"--> v4 v4 --"p:statement/P1037"--> v5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v4 -."p:qualifier/P580".-> v1 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."p:qualifier/P582".-> v2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end