query-e79806f7f883217a7e7479d9795028d9
cited articles that have an erratum 18:51, 27 September 2020 (UTC)) talk (Trilotat for both the article with the erratum and the citing article so it can highlight if it was cited AFTER the erratum. This might be a useful as a standing list if it doesn't time out. Thank you. (P577)publication date . Perhaps the query could include (P2507)corrigendum / erratum that cite articles that have the property (Q13442814)scholarly article Is it possible to generate a list of : It is like above but with 345,708 results, so I had to remove (outcomment) the labels to avoid timeout. If necessary the OPTIONAL clauses for release dates can also be removed/outcommented.Trilotat@
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?article ?articleLabel ?article_release_date ?item ?itemLabel ?item_release_date
WHERE
{
?item wdt:P2507 [] . # ?item is corrected by something
OPTIONAL { ?item wdt:P577 ?item_release_date . }
?article wdt:P2860 ?item . # ?article cites ?item
OPTIONAL { ?article wdt:P577 ?article_release_date . }
# SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v4("?article_release_date"):::projected
v1("?item"):::projected
v2("?item_release_date"):::projected
a1((" "))
v1 --"wdt:P2507"--> a1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P577".-> v2
end
v3 --"wdt:P2860"--> v1
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P577".-> v4
end