You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deletes the vertex with the given *documentHandle* from the collection.
3322
+
3323
+
**Arguments**
3324
+
3325
+
* **documentHandle**: `string`
3326
+
3327
+
The handle of the vertex to retrieve. This can be either the `_id` or the `_key` of a vertex in the collection, or a vertex (i.e. an object with an `_id` or `_key` property).
3328
+
3329
+
**Examples**
3330
+
3331
+
```js
3332
+
var graph =db.graph('some-graph');
3333
+
var collection =graph.vertexCollection('vertices');
Deletes the edge with the given *documentHandle* from the collection.
3418
+
3419
+
**Arguments**
3420
+
3421
+
* **documentHandle**: `string`
3422
+
3423
+
The handle of the edge to retrieve. This can be either the `_id` or the `_key` of an edge in the collection, or an edge (i.e. an object with an `_id` or `_key` property).
0 commit comments