Skip to content

Commit

Permalink
CTR docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Cole-Greer committed Oct 24, 2024
1 parent 18d60c4 commit a7012c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/dev/io/graphbinary.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ Where:
- `{parent}` is a fully qualified typed value composed of `{type_code}{type_info}{value_flag}{value}` which contains
the parent `Vertex`. Note that as TinkerPop currently send "references" only, this value will always be `null`.
- `{properties}` is a fully qualified typed value composed of `{type_code}{type_info}{value_flag}{value}` which contains
the properties for the edge. Note that as TinkerPop currently send "references" only this value will always be `null`.
the properties for the edge.
==== Path
Expand Down Expand Up @@ -340,7 +340,7 @@ Where:
- `{id}` is a fully qualified typed value composed of `{type_code}{type_info}{value_flag}{value}`.
- `{label}` is a `String` value.
- `{properties}` is a fully qualified typed value composed of `{type_code}{type_info}{value_flag}{value}` which contains
properties. Note that as TinkerPop currently send "references" only, this value will always be `null`.
properties.
==== VertexProperty
Expand All @@ -354,7 +354,7 @@ Where:
- `{parent}` is a fully qualified typed value composed of `{type_code}{type_info}{value_flag}{value}` which contains
the parent `Vertex`. Note that as TinkerPop currently send "references" only, this value will always be `null`.
- `{properties}` is a fully qualified typed value composed of `{type_code}{type_info}{value_flag}{value}` which contains
properties. Note that as TinkerPop currently send "references" only, this value will always be `null`.
properties.
==== Barrier
Expand Down
1 change: 1 addition & 0 deletions docs/src/reference/the-traversal.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@ Spawn steps, which actually yield a traversal, typically match the names of exis
* `inject()` - Inserts arbitrary objects to start the traversal (<<inject-step, example>>).
* `mergeE()` - Adds an `Edge` in a "create if not exist" fashion to start the traversal (<<mergeedge-step, example>>)
* `mergeV()` - Adds a `Vertex` in a "create if not exist" fashion to start the traversal (<<mergevertex-step, example>>)
* `union()` - Merges the results of an arbitrary number of child traversals to start the traversal (<<union-step, example>>).
* `V()` - Reads vertices from the graph to start the traversal (<<graph-step, example>>).
[[graph-traversal-steps]]
Expand Down

0 comments on commit a7012c6

Please sign in to comment.