cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Cannot merge the following node because of null property value

Mariana
Node Clone

Hi there. This is my first time to use NEO4J Desktop. I'm trying to create a graph through an xml file with the following code:


But I got an error.

I think it's because the 'closing' has null values, however I've tried to put some queries to solve it and I couldn't.
Appreciate any suggestion.
Thank you very much.

1 ACCEPTED SOLUTION

jackson1
Node Link

If you want to specify multiple conditions, you can use AND:

WHERE closing._text IS NOT NULL
AND specials._text IS NOT NULL

View solution in original post

3 REPLIES 3

jackson1
Node Link

You could add a WHERE condition after your WITH aliasing

WITH ...
WHERE closing._text IS NOT NULL



This happened...

jackson1
Node Link

If you want to specify multiple conditions, you can use AND:

WHERE closing._text IS NOT NULL
AND specials._text IS NOT NULL