query-ff9c93c9197d90ec701f9c4850a81714
Find all dead (i.e. not supported anymore) GNU/Linux distributions SELECT ?item ?itemLabel WHERE { ?item wdt:P31/wdt:P279* wd:Q131669. ?item p:P2669 ?statement. ?statement rdf:type wdno:P2669. # This seems to be redundant... SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wdno: <http://www.wikidata.org/prop/novalue/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Find all dead (i.e. not supported anymore) GNU/Linux distributions
SELECT ?item ?itemLabel
WHERE
{
?item wdt:P31/wdt:P279* wd:Q131669.
?item p:P2669 ?statement.
?statement rdf:type wdno:P2669. # This seems to be redundant...
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;
v1("?item"):::projected
v2("?statement")
a1((" "))
c3(["wd:Q131669"]):::iri
c8(["bd:serviceParam"]):::iri
c6(["p:novalue/P2669"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"p:direct/P31"--> a1
a1 --"p:direct/P279"--> c3
v1 --"p:P2669"--> v2
v2 --"a"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end