query-cc89619ff319398aacc7cdcc0b351a46

rq turtle/ttl

Queries: posted this query that shows the most cited author: Fnielsen@

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:BubbleChart
SELECT ?author ?authorLabel (COUNT(?publication) AS ?count)
WHERE
{
    ?item wdt:P2860 ?publication .
    ?publication wdt:P50 ?author .
    SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .
    }
}
GROUP BY ?author ?authorLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?author"):::projected v5("?count") v2("?item") v3("?publication"):::projected c4(["bd:serviceParam"]):::iri c6(["en"]):::literal v2 --"wdt:P2860"--> v3 v3 --"wdt:P50"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end bind1[/"count(?publication)"/] v3 --o bind1 bind1 --as--o v5