Wikidata:Edit groups/QSv2/4364

Edit group QSv2/4364

Summary #quickstatements Author Azertus
Number of edits 1 (more statistics) Example edit Q183094

Discussion edit

Removes the redundant links to DNB articles. Source for this batch was the following query:

# Finds items with the anti-pattern of:
#   described by source=article
#     reference: inferred by=article
#   described by source=DNB
#     statement is subject of=article
# which duplicates (triplicates) and self-references the article link.

SELECT DISTINCT ?item ?article WHERE {
  ?item p:P1343 ?articleURI;
        p:P1343 ?sourceURI.
 
  ?articleURI ps:P1343 ?article;
              prov:wasDerivedFrom ?articleRef.
  ?articleRef pr:P3452 ?article.
  
  ?sourceURI ps:P1343 ?source;
             pq:P805 ?article.
}
Try it!