query-909199aa25ceb8dcde5f11bda8ce20af

rq turtle/ttl

Sample query did back in the day: PubfeedThis list can be fed into SPARQL queries similar to what

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Table
# Publications citing papers from this page
SELECT (min(?dates) as ?date) ?work ?workLabel WHERE {
  VALUES ?work1 { wd:Q28976292 wd:Q28976271 wd:Q28976289 wd:Q28976290 wd:Q28976313 }
  ?work wdt:P2860 ?work1 .
  optional { ?work wdt:P577 ?dates . }
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en,fr,de,ru,es,zh,jp".
  }
}
group by ?work ?workLabel
order by desc(?date)
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?date") v4("?dates"):::projected v3("?work"):::projected v2("?work1") c6(["en,fr,de,ru,es,zh,jp"]):::literal c4(["bd:serviceParam"]):::iri bind0[/VALUES ?work1/] bind0-->v2 bind00(["wd:Q28976292"]) bind00 --> bind0 bind01(["wd:Q28976271"]) bind01 --> bind0 bind02(["wd:Q28976289"]) bind02 --> bind0 bind03(["wd:Q28976290"]) bind03 --> bind0 bind04(["wd:Q28976313"]) bind04 --> bind0 v3 --"wdt:P2860"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P577".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end bind2[/"min(?dates)"/] v4 --o bind2 bind2 --as--o v5