neo4j - Convert id to Node in Gremlin Pipline -
i have node has attribute contains value of node b value of attribute (functionid). there no direct edge between , b. want select , move on b depending on value of a.functionid
currently node , value of functionidd this
g.v[123].functionid but how go on? there pipeline-step truns integer value of functionid node?
g.v[123].functionid.the_magic.code
i guess do:
g.v(123).functionid.transform{g.v(it)} which use transform step convert value of functionid vertex in pipeline.
Comments
Post a Comment