query-7c30de877ad524b097f8b70fa0f61a97

rq turtle/ttl

title:Byzantinists by citizenship and gender SELECT ?nLabel ?gLabel (COUNT(?item) AS ?number) WHERE { ?item wdt:P106 wd:Q26132815 ; wdt:P27 ?n ; wdt:P21 ?g . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". } } GROUP BY ?nLabel ?gLabel ORDER BY ?nLabel

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Byzantinists by citizenship and gender
SELECT ?nLabel ?gLabel (COUNT(?item) AS ?number)
WHERE {
  ?item wdt:P106 wd:Q26132815 ; wdt:P27 ?n ; wdt:P21 ?g .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
GROUP BY ?nLabel ?gLabel
ORDER BY ?nLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?g") v2("?item"):::projected v3("?n") v1("?nLabel"):::projected v5("?number") c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;"]):::literal c2(["wd:Q26132815"]):::iri v2 --"wdt:P106"--> c2 v2 --"wdt:P27"--> v3 v2 --"wdt:P21"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"count(?item)"/] v2 --o bind1 bind1 --as--o v5