I'm working on a project where I need to import table data from a Parquet file into the Memgraph graph database. My data looks something like this:
+-----------+-------------+---------+------------+--------+
| FirstName | LastName | Country | Occupation | Salary |
+-----------+-------------+---------+------------+--------+
| John | Doe | USA | Engineer | 70000 |
| Jane | Smith | UK | Doctor | 80000 |
| Max | Johnson | Canada | Teacher | 60000 |
| Emily | Davis | Germany | Scientist | 90000 |
| Luke | Rodriguez | France | Artist | 50000 |
+-----------+-------------+---------+------------+--------+
I know that I could convert this to CSV and then use LOAD CSV Cypher clause but this is inconvenient. What can I do?