How to only see uploads by deleted purple users?

Posted under General

forum #265907 and forum #266299 are very interesting and seem related, i have a feeling that the search i seek cannot be formatted into the searchbox, but instead would need writing on the url field with this string or similar:
search[level]=>=32&search[is_deleted]=True

Blank_User said:

I thought searching for user:user_* might work, but it doesn't.

quite peculiar, i didnt think about that, however if that worked it would include all dead users not only purple, but still better than nothing

Run this in the JS console and collect your search

const users = await fetch(`https://danbooru.donmai.us/users.json?commit=Search&search[level]=%3E=32&search[is_deleted]=True&limit=999`).then((r) => r.json())
console.log(users.map((u) => `~user:${u.name}`).join(" "))

Currently this:

Show

~user:user_1375995 ~user:user_1366527 ~user:user_1256921 ~user:user_1238825 ~user:user_1211591 ~user:user_1179284 ~user:user_1156029 ~user:user_1141717 ~user:user_1141649 ~user:user_1127425 ~user:user_1111569 ~user:user_1099148 ~user:user_1051171 ~user:user_1000226 ~user:user_932445 ~user:user_903640 ~user:user_885514 ~user:user_873779 ~user:user_861069 ~user:user_827019 ~user:user_792898 ~user:user_792721 ~user:user_770645 ~user:user_759379 ~user:user_754167 ~user:user_616194 ~user:user_543428 ~user:user_536050 ~user:user_525419 ~user:user_509825 ~user:user_499293 ~user:user_493040 ~user:user_481517 ~user:user_477670 ~user:user_473823 ~user:user_469756 ~user:user_461776 ~user:user_460797 ~user:user_454355 ~user:user_450066 ~user:user_449675 ~user:user_445173 ~user:user_441999 ~user:user_418493 ~user:user_370576 ~user:user_356931 ~user:user_349538 ~user:user_201502 ~user:user_170235 ~user:user_115224 ~user:user_101644 ~user:user_59923 ~user:user_45515 ~user:user_30290 ~user:user_29689 ~user:user_19932 ~user:user_19296 ~user:user_15128 ~user:user_12565 ~user:user_11314 ~user:user_11041 ~user:user_10180 ~user:user_9546 ~user:user_126

Whether you can execute that search is not my concern, but my assumption is that purple names don't have a limit.

@Moebits thank you so much for your reply, the quoted search you proposed below loads relatively quickly, i can finally witness the "deathbooru"

the post tally for that search at the time of writing is 322760; this is how much value in terms of posts has been lost with the death of purple users

but i still believe it could be done with the url string, i hope nonamethanks could see it and provide

1