You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 29, 2024. It is now read-only.
the proper gremlin syntax for what you are trying to do is
g.addV('label').property(id, 'uuid')
Note that "label" is in single quotes, "uuid" is in single quotes, and id is not. I have gotten this to work, so I think the script evaluation error that is being returned is due to incorrect gremlin syntax.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The following results in the evaluation error:
g.addV("
+ thing.AtClass +").property(T.id, uuid)
The issue lies in
T.id
but I'm not sure how to set this value.thanks
The text was updated successfully, but these errors were encountered: