query-19997ed944587717f2893fdc55ef2dc3
TODO
Use at
- https://query.wikidata.org/sparql
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#>
#defaultView:BubbleChart
#Euskarazko Wikipediako biografien genero oreka
SELECT ?genderLabel (count(distinct?human) as ?number)
WHERE
{
?human wdt:P31 wd:Q5
; wdt:P21 ?gender.
?wikilink schema:about ?human.
?wikilink schema:isPartOf <https://eu.wikipedia.org/>.
SERVICE wikibase:label { bd:serviceParam wikibase:language "eu" }
}
GROUP BY ?genderLabel
LIMIT 6
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?gender")
v1("?human"):::projected
v4("?number")
v3("?wikilink")
c10(["eu"]):::literal
c8(["bd:serviceParam"]):::iri
c6([https://eu.wikipedia.org/]):::iri
c2(["wd:Q5"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P21"--> v2
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind1[/"count(?human)"/]
v1 --o bind1
bind1 --as--o v4