diff --git a/da/invertex.md b/da/invertex.md new file mode 100644 index 0000000000000000000000000000000000000000..3b421afe4452a88550665381d8310a03d43e64a8 --- /dev/null +++ b/da/invertex.md @@ -0,0 +1,29 @@ +Valid on frames: **Edge** + +Allowed prefixes when operation is AUTO: `get` + +The `@InVertex` takes no parameters and is used only on get methods that themself take no parameters. It specifies the `VertexFrame` at the head of an edge. + +example: + +```java +@InVertex +//Method declared here +``` + +## GET Operation + +Valid method signatures: `( )` + +### Signature: `( )` + +Valid return types: `VertexFrame`. + +Get the head vertex of the edge. + +example: + +```java +@InVertex +BarVertex getFoobar(); +``` \ No newline at end of file