The types used in these queries are defined here.
Delete all reviews from a specific user:
DELETE Review
FILTER .author.name = 'trouble2020'
Alternative way to delete all reviews from a specific user:
DELETE (
SELECT User
FILTER .name = 'troll2020'
).<author[IS Review]