Help

Re: Converting an Airtable Database into Neo4j for a Network Visualization

1816 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Tom_Slesinger
4 - Data Explorer
4 - Data Explorer

Hi there,

I have a pretty good sized, intertwined base. I am hoping to export all of my data and edges (relationships) into JSON. I know I can go through the API to retrieve the JSON, but am a little confused on how to expand the entire database. I know I need to retrieve records and use the offset to get the entire dataset, but I’m unsure as to where to code for this.

Thanks!

1 Reply 1
Stephen_Cremin
5 - Automation Enthusiast
5 - Automation Enthusiast

Hi @Tom_Slesinger

I just did a search on “Neo4j” on the forum and came across your question. Sorry for the late reply!

My approach is to query the relevant tables in Airtable through its API. The API only permits 100 rows at a time so you’ll need to detect an offset and keep pulling down the data. Once you have pulled down all the relevant data, you can then (in a first phase) creates nodes in Neo4j and (in a second phase) connect them.

If all the data is in a single base, you can just Airtable’s own record ids as Neo4j’s ids, which makes it easy to connect nodes with the relationships between the data in your Airtable tables.

Pretty much any language can be used to export the data from Airtable. If you’re not comfortable with coding, you have the option of copying and pasting columns into a text file and then importing them into Neo4j as a CSV file. In fact, when you have millions of rows of data, CSV is the fastest import option.

I regularly move my own Airtable data into Neo4j and its a great way to query and visualize patterns in your data. Where Airtable and Neo4j both shine is in making your data “touchable”, which leads to a much higher quality of data because you’re living with it.

Do reply if you found a solution.