I have a Graph database with three simple Vertex types, User, Device and Sensor. The relationship goes as,
Edges: UserHasDevices, DeviceHasSensors
Each edge has a property name "isDeleted". When deleting a Vertex, I don't make it deleted permanently but make the "isDeleted" property of the Edge as "true". Please let me know How to query a list of deleted sensors, and / or deleted list of devices, which belongs to a particular user, identified by user id.