Steps to produce bug:
1. Enable Lightweight Edges
2. CREATE CLASS SimpleV EXTENDS V
3. CREATE CLASS SimpleE EXTENDS E
4. INSERT INTO SimpleV CONTENT {"name":"A"} // this is #25:0
5. INSERT INTO SimpleV CONTENT {"name":"B"} // this is #25:1
6. CREATE EDGE SimpleE FROM #25:0 TO #
Hi Eric,
The main problem with lightweight edges is that they do not have an
identity, so they don't "physically" exist.
The big disadvantages are that:
- you cannot point to a single lightweight edge by RID
- you cannot count them, eg. SELECT FROM E will return a wrong result
The DELETE VERTEX i