query-415eed216328f8bb0b0e3bd14862ade1
TODO
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 pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT distinct ?item ?itemLabel ?caricaLabel ?governoLabel ?inizio ?fine
WHERE
{
?item wdt:P39/wdt:P279* wd:Q3858501 .
?item wdt:P39 ?carica.
OPTIONAL{?item p:P39 ?statement .}
OPTIONAL{?statement pq:P5054 ?governo .}
OPTIONAL{?statement pq:P580 ?inizio .}
OPTIONAL{?statement pq:P582 ?fine .}
SERVICE wikibase:label { bd:serviceParam wikibase:language "it". }
}
ORDER BY ?itemLabel ?inizio ?fine
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?carica")
v3("?fine"):::projected
v7("?governo")
v2("?inizio"):::projected
v4("?item"):::projected
v1("?itemLabel"):::projected
v6("?statement")
a1((" "))
c9(["bd:serviceParam"]):::iri
c3(["wd:Q3858501"]):::iri
c11(["it"]):::literal
v4 --"p:direct/P39"--> a1
a1 --"p:direct/P279"--> c3
v4 --"p:direct/P39"--> v5
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."p:P39".-> v6
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v6 -."p:qualifier/P5054".-> v7
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v6 -."p:qualifier/P580".-> v2
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v6 -."p:qualifier/P582".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end