neo4j cypher convert array/list to string
问题 One type of edges in my graph has a property called roles . It is an array/list of strings. It is like ["Bill Smoke", "Haskell Moore", "Tadeusz Kesselring", "Nurse Noakes", "Boardman Mephi", "Old Georgie"] How can I convert this to a string? I want to join them. With JS, I can do ['asd', '1', '2'].join('') . I want a similar functionality inside cypher 回答1: WITH REDUCE(mergedString = "",word IN ["Bill Smoke", "Haskell Moore", "Tadeusz Kesselring", "Nurse Noakes", "Boardman Mephi", "Old