query-1c5ed45e7cd0ef7951fc84763ade4cd2
Propertiesinstance of (P31)author name string (P2093)
Use at
- https://query.wikidata.org/sparql
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 ?author ?label (COUNT(?paper) as ?ct)
WHERE
{
?paper wdt:P31 wd:Q13442814 ;
wdt:P2093 ?shortname .
BIND(STRLANG(?shortname,"en") AS ?label)
?author rdfs:label ?label;
wdt:P31 wd:Q5
}
GROUP BY ?author ?label
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?author"):::projected
v5("?ct")
v3("?label"):::projected
v1("?paper"):::projected
v2("?shortname")
c2(["wd:Q13442814"]):::iri
c5(["wd:Q5"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P2093"--> v2
bind0[/"STRLANG(?shortname,'en')"/]
v2 --o bind0
bind0 --as--o v3
v4 --"rdfs:label"--> v3
v4 --"wdt:P31"--> c5
bind2[/"count(?paper)"/]
v1 --o bind2
bind2 --as--o v5