Create Path
- Dominant language
- C
- Stars
- 4.8k
- Forks
- 523
- Avg merge
- 1d 2h
- Merged PRs (30d)
- 9
Description
TODO: redefine
Syntax
```
ag_catalog.age_create_path(graph_name Name, n int, left_node agtype, right_node agtype,
vertex_label_name Name DEFAULT = NULL,
vertex_properties agtype DEFAULT = NULL,
edge_label_name Name DEAULT = NULL,
edge_properties agtype DEFAULT = NULL,
bidirectional bool DEFAULT = true)
```
Input:
- graph_name - Name of the graph to be created
- n - number of vertices in the path.
- vertex_label_name - Name of the label to assign each vertex to.
- vertex_properties - Property values to assign each vertex. Default is NULL
- edge_label_name - Name of the label to assign each edge to.
- edge_properties - Property values to assign each edge. Default is NULL
- bidirectional - Bidirectional True or False. Default True. TODO: Make an enum for left, right, or both
Contributor guide
Assessment
This issue has not been assessed yet.