I am implementing the functionality to upload CSV files on the Apache-age browser to generate graphs. However, the query for generating nodes or edges from CSV files requires the local path to the CSV files. Web browsers do not provide access to the local file system path for security reasons.
load_labels_from_file('<graph name>',
'<label name>',
'<file path>',
false)
Is there an alternative way to execute this query in Apache-age without the need to access the local file path, or another approach in JavaScript to achieve this objective?