query-6ac0aa11974f4fbf4caea139ae902de3
Most cited work from DTU Compute-affiliated author based on recorded citations in Wikidata
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
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#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT distinct ?work ?work_label (COUNT(?citing_work) AS ?number_of_citing_works) (GROUP_CONCAT(?citing_work_label; separator=" // ") AS ?citing_work_labels) WHERE {
{ SELECT distinct ?work ?work_label ?citing_work ?citing_work_label WHERE {
?person wdt:P1416 ?section .
?section wdt:P361 wd:Q23048689 .
?work wdt:P50 ?person .
?citing_work wdt:P2860 ?work .
SERVICE wikibase:label { bd:serviceParam wikibase:language "da,en" . }
?work rdfs:label ?work_label . filter (lang(?work_label) = 'en')
?citing_work rdfs:label ?citing_work_label . filter (lang(?citing_work_label) = 'en')
}
}
}
GROUP BY ?work ?work_label
ORDER BY DESC(?number_of_citing_works)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v7("?citing_work"):::projected
v2("?citing_work_label"):::projected
v8("?citing_work_labels")
v8("?number_of_citing_works")
v4("?person")
v5("?section")
v6("?work"):::projected
v3("?work_label"):::projected
c8(["bd:serviceParam"]):::iri
c10(["da,en"]):::literal
c4(["wd:Q23048689"]):::iri
f0[["?citing_work_label = 'en'"]]
f0 --> v2
f1[["?work_label = 'en'"]]
f1 --> v3
v4 --"wdt:P1416"--> v5
v5 --"wdt:P361"--> c4
v6 --"wdt:P50"--> v4
v7 --"wdt:P2860"--> v6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
v6 --"rdfs:label"--> v3
v7 --"rdfs:label"--> v2
bind4[/"count(?citing_work)"/]
v7 --o bind4
bind4 --as--o v8
bind5[/"?citing_work_label"/]
v2 --o bind5
bind5 --as--o v8