You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a node or edge property has value None, the JSONEncoder will serialize that value as null without complaining. Neo4j chokes on the null value, and returns a 500 server error, derailing the batch ingest. Two potential solutions come to mind:
Check for and exclude properties with value None in get_node and get_relationship.
Change None values to an empty string ("") or some (optional) default value.
The text was updated successfully, but these errors were encountered:
If a node or edge property has value
None
, the JSONEncoder will serialize that value asnull
without complaining. Neo4j chokes on thenull
value, and returns a 500 server error, derailing the batch ingest. Two potential solutions come to mind:None
inget_node
andget_relationship
.None
values to an empty string (""
) or some (optional) default value.The text was updated successfully, but these errors were encountered: