query-6f5cb0a6216640042d5d1efb59778452

rq turtle/ttl

Propertiessex or gender (P21)country of citizenship (P27)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel (COUNT(?article) AS ?count)
WHERE {
  ?item wdt:P21 wd:Q6581072 ;
        wdt:P27 wd:Q142 .
    ?article schema:about ?item .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}
GROUP BY ?item ?itemLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article"):::projected v4("?count") v2("?item"):::projected c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q6581072"]):::iri c4(["wd:Q142"]):::iri v2 --"wdt:P21"--> c2 v2 --"wdt:P27"--> c4 v3 --"schema:about"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind1[/"count(?article)"/] v3 --o bind1 bind1 --as--o v4