-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for list types with cardinality #284
Comments
from the stack overflow question: |
Thanks, will try this and get back to you |
Plain scala |
From Neptune team:
So as I first suggested, the issue is addVertex/marshaller does not support translating lists to list cardinality properties, or sets to set cardinality properties but instead tries to just shove the whole object in. Also from Neptune team
|
Hi,
Please see the following SO question. This happened when using
Seq
andList
for properties on my CC.https://stackoverflow.com/questions/56568962/unsupported-property-value-type-java-util-linkedhashmap-when-writing-to-neptune
I was able to step through your code, and it appears that for a
List
typeaddVertex
proceeds to add the whole list as a property which is unsupported. Is there a way to make it iterate through and add all said items to the property the Gremlin way i.e.The text was updated successfully, but these errors were encountered: