I have some Cypher code (test code) that uses APOC to load an Excel file and then process each row. What I want to do is this:
call apoc.load.xls('Test File.xlsx', 'Company',
// the file has a header row
{header:true})
yield map as row
with row
MERG...