The below query works fine in SDN 5, But in SDN 6 they throw error.
UNWIND {0} AS row
MATCH (student:Student{guid:row.stuGuid}), (college:College{guid:row.collegeGuid})
CREATE (student)<-[:STUDENT_OF]-(college)
RETURN student.guid
public List addOwnerOfActvities(List<Map<String,String>> data);
Can anyone tell me How I resolve that issue?