I have a simple relational database that has two tables: employees
and projects
. The employees table has columns for employee_id
, name
, department
, and manager_id
. The projects
table has columns for project_id
, name
, and employee_id
(the employee who is responsible for the project).
What are the steps to follow to migrate this data to a graph database using Apache AGE?