While reading a elastic index into neo4j, there are fields with null values, I use below code to read and get the error
MERGE (applicationgisno:ApplicationGISNo {appgis: applicant.GIS_No})
MERGE (doc)-[:GIS_No]->(applicationgisno)
#if the value is null in json, then we get
Neo.ClientError.Statement.SemanticError: Cannot merge node using null property value for appgis
May I know how to use say if condition here, if that value is null then replace with a string "NULL" to create the node in graph?