spmallette commented on code in PR #3458: URL: https://github.com/apache/tinkerpop/pull/3458#discussion_r3443726324
########## docs/src/dev/provider/gremlin-semantics.asciidoc: ########## @@ -1525,6 +1525,37 @@ None None +[[e-step]] +=== E() + +*Description:* Reads edges from the graph by their identifiers. Can be used as a start step or mid-traversal. + +*Syntax:* `E(Object... edgeIds)` | `E(Traversal idTraversal)` + +[width="100%",options="header"] +|========================================================= +|Start Step |Mid Step |Modulated |Domain |Range +|Y |Y |N |`any` |`Edge` +|========================================================= + +*Arguments:* Review Comment: Makes no metnion of: ``` gremlin> g.E([11, 12]) ==>e[11][4-created->3] ==>e[12][6-created->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]
