query-7d7fe2acd8cacf2426423dd778a92d56

rq turtle/ttl

title:count of women items having country of citizenship in Africa SELECT (COUNT(*) AS ?count) WHERE { ?item wdt:P31 wd:Q5 . ?item wdt:P21 wd:Q6581072. ?item wdt:P27/wdt:P30 wd:Q15 . }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#title:count of women items having country of citizenship in Africa
SELECT (COUNT(*) AS ?count)
WHERE {
  ?item wdt:P31 wd:Q5 .
  ?item wdt:P21 wd:Q6581072.
  ?item wdt:P27/wdt:P30 wd:Q15 .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?count") v1("?item") a1((" ")) c2(["wd:Q5"]):::iri c4(["wd:Q6581072"]):::iri c7(["wd:Q15"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P21"--> c4 v1 --"wdt:P27"--> a1 a1 --"wdt:P30"--> c7 bind1[/"count(*)"/] bind1 --as--o v2