query-770e3319f9011c072bae89f3400ec8df
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 bd: <http://www.bigdata.com/rdf#>
#defaultView:Graph
#Educational institutes of Chief Justices of India
SELECT ?item ?itemLabel ?education ?educationLabel WHERE {
?item wdt:P39 wd:Q3243690.
?item wdt:P69 ?education.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?education"):::projected
v1("?item"):::projected
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
c2(["wd:Q3243690"]):::iri
v1 --"wdt:P39"--> c2
v1 --"wdt:P69"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end