You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the new dynamic labels set from the list feature, we can now list multiple labels in one cell of the CSV file we're importing.
Todo: add an example of that under LOAD CSV section of the docs.
LOAD CSV FROM "/data.csv"
WITH HEADER AS row
WITH {labels: convert.str2object(row.label)} AS metadata, row
CREATE (n:metadata.labels {name: row.name, id: toInteger(row.id)})
RETURN n;
The text was updated successfully, but these errors were encountered:
With the new dynamic labels set from the list feature, we can now list multiple labels in one cell of the CSV file we're importing.
Todo: add an example of that under
LOAD CSV
section of the docs.Context
Query example:
The text was updated successfully, but these errors were encountered: