query-8fe0bd4da63e8ee796259e45abf4733c
Liste des gouvernementsListe des gouvernements de la 5ème République française avec leur numéro dans la série, leur date de début et leur date de fin.
Use at
- https://query.wikidata.org/sparql
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 ?item ?itemLabel ?numero ?start ?end
WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
?item p:P31 ?statement.
?statement ps:P31 wd:Q1450662.
OPTIONAL {?statement pq:P1545 ?numero.}
OPTIONAL {?item wdt:P571 ?start}
OPTIONAL {?item wdt:P576 ?end}
}
ORDER BY DESC(?start)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?end"):::projected
v2("?item"):::projected
v4("?numero"):::projected
v1("?start"):::projected
v3("?statement")
c2(["bd:serviceParam"]):::iri
c4(["fr"]):::literal
c7(["wd:Q1450662"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"p:P31"--> v3
v3 --"p:statement/P31"--> c7
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."p:qualifier/P1545".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P571".-> v1
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P576".-> v5
end