query-59b417a62975df5950618067f62af036

rq turtle/ttl

TODO

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#>
#defaultView:BubbleChart
SELECT ?medspec ?medspecLabel ?count
WHERE 
{
  {
    SELECT ?medspec (COUNT(?item) AS ?count)    
WHERE {
        ?item wdt:P972 wd:Q5460604 .
  ?item wdt:P1995 ?medspec  .

       }
  GROUP BY ?medspec 
  }
   SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY DESC(?count)
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count"):::projected v2("?item") v3("?medspec"):::projected c5(["bd:serviceParam"]):::iri c7(["en"]):::literal c2(["wd:Q5460604"]):::iri v2 --"wdt:P972"--> c2 v2 --"wdt:P1995"--> v3 bind1[/"count(?item)"/] v2 --o bind1 bind1 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end