spmallette commented on code in PR #3483:
URL: https://github.com/apache/tinkerpop/pull/3483#discussion_r3494640032
##########
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/binary/types/EdgeSerializer.java:
##########
@@ -44,25 +47,43 @@ public EdgeSerializer() {
@Override
protected Edge readValue(final Buffer buffer, final GraphBinaryReader
context) throws IOException {
final Object id = context.read(buffer);
- // reading single string value for now according to GraphBinaryV4
- final String label = (String) context.readValue(buffer, List.class,
false).get(0);
+ // Read all labels as List<String> for multi-label support
Review Comment:
no multi-label for edge, right?
--
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]