Skip to content
Prev Previous commit
Next Next commit
documentation streamTx on graphs
  • Loading branch information
michele committed Sep 26, 2019
commit 4c8c52ec454ca5f1d95aabb113d6453bf701064d
16 changes: 16 additions & 0 deletions docs/Drivers/Java/Reference/Graph/Edges.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ Retrieves the edge document with the given `key` from the collection.

Whether or not catch possible thrown exceptions

- **streamTransactionId**: `String`

If set, the operation will be executed within the transaction

## ArangoEdgeCollection.insertEdge

`ArangoEdgeCollection.insertEdge(T value, EdgeCreateOptions options) : EdgeEntity`
Expand Down Expand Up @@ -88,6 +92,10 @@ a edge and no precondition is violated.

Replace a document based on target revision

- **streamTransactionId**: `String`

If set, the operation will be executed within the transaction

**Examples**

```Java
Expand Down Expand Up @@ -135,6 +143,10 @@ edge and no precondition is violated.
from the existing document that are contained in the patch document with an
attribute value of null.

- **streamTransactionId**: `String`

If set, the operation will be executed within the transaction

**Examples**

```Java
Expand Down Expand Up @@ -169,6 +181,10 @@ Deletes the edge with the given _key_ from the collection.

Remove a document based on target revision

- **streamTransactionId**: `String`

If set, the operation will be executed within the transaction

**Examples**

```Java
Expand Down
24 changes: 24 additions & 0 deletions docs/Drivers/Java/Reference/Graph/Vertices.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ Retrieves the vertex document with the given `key` from the collection.

Whether or not catch possible thrown exceptions

- **streamTransactionId**: `String`

If set, the operation will be executed within the transaction

## ArangoVertexCollection.insertVertex

`ArangoVertexCollection.insertVertex(T value, VertexCreateOptions options) : VertexEntity`
Expand All @@ -48,6 +52,14 @@ Creates a new vertex in the collection.

Wait until document has been synced to disk.

- **streamTransactionId**: `String`

If set, the operation will be executed within the transaction

- **streamTransactionId**: `String`

If set, the operation will be executed within the transaction

**Examples**

```Java
Expand Down Expand Up @@ -88,6 +100,10 @@ a vertex and no precondition is violated.

Replace a document based on target revision

- **streamTransactionId**: `String`

If set, the operation will be executed within the transaction

**Examples**

```Java
Expand Down Expand Up @@ -135,6 +151,10 @@ a vertex and no precondition is violated.
from the existing document that are contained in the patch document with
an attribute value of null.

- **streamTransactionId**: `String`

If set, the operation will be executed within the transaction

**Examples**

```Java
Expand Down Expand Up @@ -169,6 +189,10 @@ Deletes the vertex with the given _key_ from the collection.

Remove a document based on target revision

- **streamTransactionId**: `String`

If set, the operation will be executed within the transaction

**Examples**

```Java
Expand Down