query-b0b2455af05c742effb89ff74e5177d6
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#>
# Subclass tree to depth 3
#defaultView:Tree
SELECT ?root ?rootLabel ?c1 ?c1Label ?c2 ?c2Label ?c3 ?c3Label WHERE {
VALUES ?root { wd:Q35120 }
?c1 wdt:P279 ?root .
OPTIONAL {
?c2 wdt:P279 ?c1 .
OPTIONAL {
?c3 wdt:P279 ?c2 .
}
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} ORDER BY ?c1Label ?c2Label ?c3Label
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?c1"):::projected
v1("?c1Label"):::projected
v6("?c2"):::projected
v2("?c2Label"):::projected
v7("?c3"):::projected
v3("?c3Label"):::projected
v4("?root"):::projected
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?root/]
bind0-->v4
bind00(["wd:Q35120"])
bind00 --> bind0
v5 --"wdt:P279"--> v4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v6 -."wdt:P279".-> v5
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v7 -."wdt:P279".-> v6
end
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end