query-c6cc4d3eb8c100599818ac0def8599f3
Rector of ITB
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#>
# List of ITB Rector
#defaultView:Timeline
SELECT ?item ?itemLabel ?tbegin ?image
WHERE {
?item wdt:P39 wd:Q56843484.
?item p:P39/pq:P580 ?tbegin.
OPTIONAL {
?item wdt:P18 ?image
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],id,en". }
}
ORDER BY ?tbegin
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?image"):::projected
v2("?item"):::projected
v1("?tbegin"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c2(["wd:Q56843484"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,id,en"]):::literal
v2 --"p:direct/P39"--> c2
v2 --"p:P39"--> a1
a1 --"p:qualifier/P580"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P18".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end