Aura: Exporting Sub-graph from Neo4j-Aura to local-Neo4j for debugging

Hi Cory,

I've finally gotten around to play around with this CSV file.

I can access the file from my local. That's me showing it has 2 lines:

However, all the examples I'm seeing in the Importing CSV guide. Are having me parse the data manually and then specify the node/relationship structure (essentially schema) of my entire graph

LOAD CSV WITH HEADERS FROM 'file:///data.csv' AS row
MERGE (c:Company {companyId: row.Id, hqLocation: coalesce(row.Location, "Unknown")})

I was hoping since this was generated from neo4j, there would be an easy native way to import the data that it itself has generated. Please advise.