query-3ebeaaa814697dc89159dc9f181976cc
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX gas: <http://www.bigdata.com/rdf/gas#>
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#>
SELECT ?subgenre ?subgenreLabel ?depth WHERE {
SERVICE gas:service {
gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.BFS";
gas:in wd:Q23916 ;
gas:traversalDirection "Reverse" ;
gas:linkType wdt:P279 ;
gas:out ?subgenre ;
gas:out1 ?depth.
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY (?depth)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?depth"):::projected
v2("?subgenre"):::projected
c2(["gas:program"]):::iri
c8(["Reverse"]):::literal
c16(["en"]):::literal
c10(["wdt:P279"]):::iri
c4(["com.bigdata.rdf.graph.analytics.BFS"]):::literal
c14(["bd:serviceParam"]):::iri
c6(["wd:Q23916"]):::iri
subgraph s1["http://www.bigdata.com/rdf/gas#service"]
style s1 stroke-width:4px;
c2 --"gas:gasClass"--> c4
c2 --"gas:in"--> c6
c2 --"gas:traversalDirection"--> c8
c2 --"gas:linkType"--> c10
c2 --"gas:out"--> v2
c2 --"gas:out1"--> v1
end
subgraph s2["http://wikiba.se/ontology#label"]
style s2 stroke-width:4px;
c14 --"wikibase:language"--> c16
end