I am attaching a query, in this query we need to convert the empty strings as NULL values to concat the strings to form comma-separated strings.
match (d:dpComponent)
call apoc.do.case([
d.componentId="",'SET d.componentId = null return d',
...
Hello,
we are planning to update and return the updated values as a result of multiple component values using a single update and return query if we are trying with multiple queries there are no issues and if we try with a single query we couldn't ab...