query-38112e2661db02efbbef84f81e75040d

rq turtle/ttl

TODO

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 ?gender ?genderLabel (COUNT(*) AS ?count) WHERE {
  ?sitelink schema:about ?item;
    schema:isPartOf <https://fr.wikiquote.org/>;
    schema:name ?string.
  ?item wdt:P31  wd:Q5 ;
        wdt:P21 ?gender.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
GROUP BY  ?gender ?genderLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?count") v5("?gender"):::projected v3("?item") v2("?sitelink") v4("?string") c3([https://fr.wikiquote.org/]):::iri c9(["bd:serviceParam"]):::iri c11(["#91;AUTO_LANGUAGE#93;"]):::literal c6(["wd:Q5"]):::iri v2 --"schema:about"--> v3 v2 --"schema:isPartOf"--> c3 v2 --"schema:name"--> v4 v3 --"wdt:P31"--> c6 v3 --"wdt:P21"--> v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end bind1[/"count(*)"/] bind1 --as--o v6