Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions modules/ROOT/pages/import.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1288,6 +1288,12 @@ A different delimiter can be specified with `--array-delimiter`.
Arrays are not affected by the `--normalize-types` flag.
For example, if you want a byte array to be stored as a Cypher long array, you must explicitly declare the property as `long[]`.

[NOTE]
====
CSV based import will not import empty arrays, because they cannot be distinguished from arrays that are set to `null`.
The Parquet import distinguishes between them, and will import empty arrays as empty arrays and `null` as `null`.
====

Boolean values are _true_ if they match exactly the text `true`. All other values are _false_.
Values that contain the delimiter character need to be escaped by enclosing in double quotation marks, or by using a different delimiter character with the `--delimiter` option.

Expand Down