query-b301e556ff0c82ce98b08efad4daf988
select distros SELECT ?distroLabel ?distro ?incepdate
WHERE { ?distro wdt:P31 wd:Q131669 . ?distro wdt:P571 ?incepdate . SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . } }
GROUP BY (?distro)
ORDER BY ASC (?incepdate) LIMIT 1000
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#>
# select distros
SELECT ?distroLabel ?distro ?incepdate
WHERE {
?distro wdt:P31 wd:Q131669 .
?distro wdt:P571 ?incepdate .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
#GROUP BY (?distro)
ORDER BY ASC (?incepdate)
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?distro"):::projected
v1("?incepdate"):::projected
c2(["wd:Q131669"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P571"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end