query-e629faa2ecdf913eb75a9cec12720104
Show the value in this query don't work. ?item wdt:P39 ?carica.How is possible show the value of P39 in this query? Add simply
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 .}
{?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;
v3("?fine"):::projected
v6("?governo")
v2("?inizio"):::projected
v4("?item"):::projected
v1("?itemLabel"):::projected
v5("?statement")
a1((" "))
c9(["bd:serviceParam"]):::iri
c3(["wd:Q3858501"]):::iri
c11(["it"]):::literal
v4 --"p:direct/P39"--> a1
a1 --"p:direct/P279"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."p:P39".-> v5
end
v5 --"p:qualifier/P5054"--> v6
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v5 -."p:qualifier/P580".-> v2
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v5 -."p:qualifier/P582".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end