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.

Admin import: ignoring the ID column

neocsbee
Node Clone

3X_d_b_db6ce0cfb324384f15771dbabb659a7ef6f3c50c.png

nameId is the ID column of the CSV file that relates to the Name node type.

  1. How to stop nameId from being shown/treated as a property? I am only interested in the name property.
  2. Is it okay to drop nameId property once the graph is loaded?
  3. Why does Neo4j create its own internal property when Ids are fed through admin import command line as part of the CSV files?

Thanks.

2 REPLIES 2

#1. As my experience you can create a header file like header.csv then config the ignored column as you wish like this:

name:ID(Label),date,total,nameId:IGNORE

Guide to import CSV
#2. It's up to you. Easy to do that.
#3. As my reading the ID that is the auto-generated ID by Neo4j platform and used internally only. It's good for data storage also. I think.

  1. Yes, I am aware of the 'ignore' feature. I am interested to know if 'ignoring' an ID column which is important for creating relations is going to cause issues.
  2. My second question is related to the first and yes, I agree it is easy to drop.
  3. I was wondering why the admin import documentation does not speak about internal ID creation and hence my question.

Thanks for your reply.