Cole-Greer commented on code in PR #3523: URL: https://github.com/apache/tinkerpop/pull/3523#discussion_r3606034557
########## docs/src/upgrade/release-4.x.x.asciidoc: ########## @@ -108,14 +107,13 @@ gremlin.tinkergraph.vertexLabelCardinality=ZERO_OR_MORE The three modes are `ONE` (single, immutable, the 3.x default), `ONE_OR_MORE` (mutable, minimum one), and `ZERO_OR_MORE` (fully flexible). Edge labels remain fixed at `ONE`. -The following examples demonstrate how Gremlin behaves with multi-label enabled: +With multi-label enabled, `addLabel()` and `dropLabel()` mutate a vertex's labels, and the new `labels()` step +reliably returns every label — unlike `label()`, which returns only one and is now deprecated: Review Comment: ```suggestion which produces all labels, while the legacy `label()` step continues to produce a single label only, and is now deprecated: ``` -- 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]
