Documentation/Graph Query Language
DELETE
The delete statement deletes data from an object specified by the where condition.
FROM type_list DELETE [ EMPTY | id ] where_cond
- Deletes from one or more types optionally one can give an ‘WHERE’ clause to specify the object that are affected by the deletion.
- For example: ‘FROM User DELETE WHERE Name=’Homer’ ’
