query-2a687000b746d2869a8a87dde76b041f

rq turtle/ttl

Propertiesinstance of (P31)

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 ?p  (count(*) as ?cnt) WHERE {
SELECT *
WHERE {
  ?s ?p ?dept;
     wdt:P31 wd:Q5.
  ?dept wdt:P31 wd:Q2467461.
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} limit 10000
}group by ?p order by desc(?cnt) limit 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?cnt") v4("?dept") v3("?p"):::projected v2("?s") c5(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q2467461"]):::iri v2 -->v3--> v4 v2 --"wdt:P31"--> c2 v4 --"wdt:P31"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind1[/"count(*)"/] bind1 --as--o v5