query-ea99b5b5ffbed00fcefc6da0f34acd6f

rq turtle/ttl

Gib mir alle Supercomputer!

Use at

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 ?computer ?computerLabel (SAMPLE(?rechenleistung) AS ?rl)
WHERE {
  ?computer wdt:P31/wdt:P279* wd:Q121117 .   #Superconputer
  ?computer wdt:P7256 ?rechenleistung
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" }
} GROUP BY ?computer ?computerLabel
ORDER BY DESC(?rl)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?computer"):::projected v3("?rechenleistung"):::projected v4("?rl") a1((" ")) c6(["bd:serviceParam"]):::iri c3(["wd:Q121117"]):::iri c8(["de,en"]):::literal v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P7256"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"sample(?rechenleistung)"/] v3 --o bind1 bind1 --as--o v4