spmallette commented on code in PR #3458: URL: https://github.com/apache/tinkerpop/pull/3458#discussion_r3443682305
########## docs/src/reference/the-traversal.asciidoc: ########## @@ -2112,6 +2119,25 @@ the key,value pairs for those vertices. <9> Property key is always stored as `String` and therefore an equality check with `null` will produce no result. <10> An example of using `has()` with regular expression predicate. +In addition to literal values, `has()` accepts child traversals for dynamic comparisons. The child traversal is +evaluated per-traverser and its first result becomes the comparison value, consistent with `by(traversal)` semantics. +The child traversal cannot include mutating steps like `addV()` or `property()`; if present, they are rejected with Review Comment: > The child traversal cannot include mutating steps like `addV()` or `property()`; if present, they are rejected with an `IllegalArgumentException`. No semi-colons. Use a proper transition word or two sentences. -- 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]
