spmallette commented on code in PR #3458: URL: https://github.com/apache/tinkerpop/pull/3458#discussion_r3443728485
########## docs/src/dev/provider/gremlin-semantics.asciidoc: ########## @@ -2477,6 +2743,37 @@ See: link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/j link:https://github.com/apache/tinkerpop/tree/x.y.z/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/TrimLocalStep.java[source (local)], link:https://tinkerpop.apache.org/docs/x.y.z/reference/#trim-step[reference] +[[v-step]] +=== V() + +*Description:* Reads vertices from the graph by their identifiers. Can be used as a start step or mid-traversal. + +*Syntax:* `V(Object... vertexIds)` | `V(Traversal idTraversal)` + +[width="100%",options="header"] +|========================================================= +|Start Step |Mid Step |Modulated |Domain |Range +|Y |Y |N |`any` |`Vertex` +|========================================================= + +*Arguments:* Review Comment: Makes no mention of: ``` gremlin> g.V([2,3]) ==>v[2] ==>v[3] ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
