query-2d97a1afc5d2cf8a755adeaee9045011
Short author names statistics
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
select ?short_author (count(?paper) as ?count) where {
?paper wdt:P1325 ?external .
filter (strstarts(str(?external), 'https://openfmri.org/'))
?paper wdt:P2093 ?short_author .
}
group by ?short_author
order by desc(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?count")
v2("?external")
v3("?paper"):::projected
v4("?short_author"):::projected
f0[["starts-with(str(?external),'https://openfmri.org/')"]]
f0 --> v2
v3 --"wdt:P1325"--> v2
v3 --"wdt:P2093"--> v4
bind2[/"count(?paper)"/]
v3 --o bind2
bind2 --as--o v5