query-fa6e03e80d6c76a27d65549e08e37bee

rq turtle/ttl

Enea revert the number of female and male elements were almost equal (I checked this with SPARQL query). But now according to usage it is a male name, not a female! Check out this query: this editIIRC by the time I did

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select ?g (count(?g) as ?cnt)
{
  ?item wdt:P735 wd:Q16423333 ; wdt:P21/rdfs:label ?g filter(lang(?g) = "en")
}
group by ?g

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?cnt") v1("?g"):::projected v2("?item") a1((" ")) c3(["wd:Q16423333"]):::iri f0[["?g = 'en'"]] f0 --> v1 v2 --"wdt:P735"--> c3 v2 --"wdt:P21"--> a1 a1 --"rdfs:label"--> v1 bind2[/"count(?g)"/] v1 --o bind2 bind2 --as--o v3