Delete

The types used in these queries are defined here.

Delete all reviews from a specific user:

Copy
DELETE Review
FILTER .author.name = 'trouble2020'

Alternative way to delete all reviews from a specific user:

Copy
DELETE (
    SELECT User
    FILTER .name = 'troll2020'
).<author[IS Review]
Light
Dark
System