query-3687d5ac3f78a8cb63993d9e6adfe35f
Doom source ports' genealogy!
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#>
#Genealogy of the Doom ports
#defaultView:Graph
SELECT ?port ?portLabel ?mother ?motherLabel WHERE {
?port wdt:P31 wd:Q7565159;
(wdt:P144*) wd:Q909009;
wdt:P144 ?mother.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?mother"):::projected
v1("?port"):::projected
c2(["wd:Q7565159"]):::iri
c6(["bd:serviceParam"]):::iri
c4(["wd:Q909009"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P144"--> c4
v1 --"wdt:P144"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end