ebrahimtorabi
ebrahimtorabi
thanks. i need create or merge conditionally for example: ``` FOREACH(ignoreMe IN CASE WHEN 'y' THEN [1] ELSE [] END | MERGE (u)-[r2:STAGE {startdate:20141225, enddate:'99999999', status:'InProgress'}]->(b2 {fork:'fail'}) ) FOREACH(ignoreMe IN...
thanks for redisgraph MATCH p=(u:USER{id:$userid})-[r:Has_access]->(operation:Operation{title:"insert"} FOREACH(ar IN CASE WHEN EXISTS(p) THEN [1] ELSE [] END | MERGE (article:Article{title:$title}) MERGE (article)-[c:CreateBy]->(u) Return article ) Return CASE WHEN articeNull THEN article ELSE...
i want to pass struct that contained list of other struct to query string and then 'UNWIND' this list ,then create my desired node by it ```go type TranslatedValue struct...