Neptune openCypher graph traversal that uses dynamically calculated values from last edge to select outgoing edges for further traversal
My requirement is to process edge properties to calculate some values which can be later used to choose the outgoing edges I want to traverse, repeating the process again when visiting the outgoing edges.
Neptune graph traversal that uses previous edge property to decide next edge, and the property is a collection
My requirement is to use properties from incoming edge which can be sets of strings to decide which outgoing edges to select for further traversal. If any of the values in one collection can be found in another collection then I want to select the edge for traversal. There can be up to a 1000 values in the set.