query-b14e3f9044da5a7249cd7b2a71a935b4

rq turtle/ttl

Diseases by medical specialtyTo guide the development of the life sciences SPARQL:

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#>
#Diseases by medical specialty
#defaultView:BubbleChart
SELECT ?spec ?specLabel ?count
WHERE 
{
  {
    SELECT ?spec (COUNT(?item) AS ?count)    
WHERE {
        ?item wdt:P31 wd:Q12136 .
        ?item wdt:P1995 ?spec  .
        }
  GROUP BY ?spec 
  }
   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("?spec"):::projected c5(["bd:serviceParam"]):::iri c7(["en"]):::literal c2(["wd:Q12136"]):::iri v2 --"wdt:P31"--> 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