query-d9d87ba53105dcbc26003c354a5f50fa
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 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#>
#defaultView:BubbleChart
#Number of days Chief Justices of India were in office
SELECT ?cjiLabel ?days WHERE {
?cji wdt:P39 wd:Q3243690.
?cji p:P39 ?statement.
?statement ps:P39 wd:Q3243690.
?statement pq:P580 ?start.
?statement pq:P582 ?end.
bind(floor(?end - ?start) as ?days)
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY ?start
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?cji")
v5("?days"):::projected
v4("?end")
v1("?start")
v3("?statement")
c8(["bd:serviceParam"]):::iri
c10(["en"]):::literal
c2(["wd:Q3243690"]):::iri
v2 --"p:direct/P39"--> c2
v2 --"p:P39"--> v3
v3 --"p:statement/P39"--> c2
v3 --"p:qualifier/P580"--> v1
v3 --"p:qualifier/P582"--> v4
bind0[/"numeric-floor(?end - ?start)"/]
v4 --o bind0
v1 --o bind0
bind0 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end