query-ed86e331f0310817433762cbaeb49af7

rq turtle/ttl

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

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 India
SELECT (COUNT(*) AS ?count)
WHERE {
  ?item wdt:P31 wd:Q5 .
  ?item wdt:P21 wd:Q6581072.
  ?item wdt:P27 wd:Q668 .
}

Query found at

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