query-5e1b15e54bc427a07399e8d7a34f351f
Common short names
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
select ?short_author (count(?paper) as ?count) where {
{ ?paper wdt:P921 wd:Q202864 . } UNION { ?paper wdt:P921 wd:Q8071861 . }
?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;
v4("?count")
v2("?paper"):::projected
v3("?short_author"):::projected
c2(["wd:Q202864"]):::iri
c3(["wd:Q8071861"]):::iri
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P921"--> c3
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P921"--> c2
end
union0r <== or ==> union0l
end
v2 --"wdt:P2093"--> v3
bind1[/"count(?paper)"/]
v2 --o bind1
bind1 --as--o v4