Yes you could! To do so, I would:
- create an OpenRefine project from the list of edits you made: https://editgroups.toolforge.org/api/b/OR/c2886fa10ff/edits.csv (that’s for a single batch - you could import more of them in the same project though). Let’s assume this OpenRefine project is named “My Wikidata edits”.
- in your original project, create a new column based on the column where your edited items are. You can use the expression
cross(cell.recon.match.id, 'My Wikidata edits', 'title')[0].cells['reverted'].value
. - you can then create a facet on that column. It contains “True” when an edit was made and was already reverted, “False” when an edit was made and not reverted yet, and will be blank for items that have not been edited yet
You can read more about this cross
function, which lets you access data from other projects here: