query-e41f775bbf5733e8eda0364fe9a3fc4d

rq turtle/ttl

Most cited authors

PREFIX target: http://www.wikidata.org/entity/Q2779854

SELECT ?count ?author ?authorLabel ?orcid ?example_cited_work ?example_cited_workLabel ?example_citing_work ?example_citing_workLabel WITH { # Count the number of citations SELECT ?author (COUNT(?cited_work) AS ?count) (SAMPLE(?cited_work) AS ?example_cited_work) (SAMPLE(?citing_work) AS ?example_citing_work) WHERE { ?cited_work wdt:P1433 target: . ?citing_work wdt:P2860 ?cited_work . ?cited_work wdt:P50 ?author . } GROUP BY ?author } AS %result WHERE { INCLUDE %result

# Include optional ORCID iD OPTIONAL { ?author wdt:P496 ?orcid . }

# Label the results SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . } } ORDER BY DESC(?count) LIMIT 50

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Most cited authors

PREFIX target: <http://www.wikidata.org/entity/Q2779854>

SELECT
  ?count
  ?author ?authorLabel
  ?orcid
  ?example_cited_work ?example_cited_workLabel
  ?example_citing_work ?example_citing_workLabel
WHERE {
   {
  # Count the number of citations
  SELECT
    ?author
    (COUNT(?cited_work) AS ?count)
    (SAMPLE(?cited_work) AS ?example_cited_work)
    (SAMPLE(?citing_work) AS ?example_citing_work)
  WHERE {
    ?cited_work wdt:P1433 target: .
    ?citing_work wdt:P2860 ?cited_work .
    ?cited_work wdt:P50 ?author .
  }
  GROUP BY ?author
}

  # Include optional ORCID iD
  OPTIONAL { ?author wdt:P496 ?orcid . }

  # Label the results
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . } 
}
ORDER BY DESC(?count)
LIMIT 50

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?author"):::projected v2("?cited_work") v3("?citing_work") v5("?count"):::projected v5("?example_cited_work"):::projected v6("?example_citing_work"):::projected v7("?orcid"):::projected c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2([http://www.wikidata.org/entity/Q2779854]):::iri v2 --"wdt:P1433"--> c2 v3 --"wdt:P2860"--> v2 v2 --"wdt:P50"--> v4 bind3[/"count(?cited_work)"/] v2 --o bind3 bind3 --as--o v5 bind4[/"sample(?cited_work)"/] v2 --o bind4 bind4 --as--o v5 bind5[/"sample(?citing_work)"/] v3 --o bind5 bind5 --as--o v6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v4 -."wdt:P496".-> v7 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end