query-2b10232a1a748d954cd3281d41f379fd

rq turtle/ttl

TODO

Use at

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 DISTINCT ?paper ?label ?author (COUNT(DISTINCT ?label) as ?count) WHERE{
  hint:Query hint:optimizer "None" .
  ?paper wdt:P31 wd:Q13442814 ;
#         wdt:P921 wd:Q202864 ;
         wdt:P2093 ?shortname .
  BIND(STRLANG(?shortname,"en") AS ?label)
#  FILTER(CONTAINS(LCASE(?shortname), "miller"))
  ?author rdfs:label ?label;
          wdt:P31 wd:Q5 .
#  ?otherpaper wdt:P50 ?author.
} 
GROUP BY ?paper ?label ?author ?count
ORDER BY DESC(?count)

Query found at