query-228e5300ccae6bf1d78804724097ff9a
politicians in italian parlement SELECT ?item ?itemLabel ?date WHERE { ?item wdt:P39 wd:Q18558478; p:P39 [ps:P39 wd:Q18558478;pq:P580 ?date]. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY DESC (?date)
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#>
#politicians in italian parlement
SELECT ?item ?itemLabel ?date
WHERE
{
?item wdt:P39 wd:Q18558478;
p:P39 [ps:P39 wd:Q18558478;pq:P580 ?date].
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC (?date)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?date"):::projected
v2("?item"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c2(["wd:Q18558478"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"p:direct/P39"--> c2
a1 --"p:statement/P39"--> c2
a1 --"p:qualifier/P580"--> v1
v2 --"p:P39"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end