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
@@ -1274,7 +1289,7 @@ For properties, the `<name>` part of the field designates the property key, whil
1274
1289
You can have properties in both node data files and relationship data files.
1275
1290
The max length of property keys for block format is 16,383 characters.
1276
1291
1277
-
Use one of `int`, `long`, `float`, `double`, `boolean`, `byte`, `short`, `char`, `string`, `point`, `date`, `localtime`, `time`, `localdatetime`, `datetime`, and `duration` to designate the data type for properties.
1292
+
Use one of `int`, `long`, `float`, `double`, `boolean`, `byte`, `short`, `char`, `string`, `point`, `date`, `localtime`, `time`, `localdatetime`, `datetime`, `duration`, and `vector` to designate the data type for properties.
1278
1293
By default, types (except arrays) are converted to Cypher types.
1279
1294
See link:{neo4j-docs-base-uri}/cypher-manual/current/values-and-types/property-structural-constructed/#_property_types[Cypher Manual -> Property, structural, and constructed values].
1280
1295
@@ -1391,6 +1406,27 @@ This overrides the header definition for `date1`, as well as the configured defa
1391
1406
1392
1407
====
1393
1408
1409
+
Special considerations for vector data types::
1410
+
+
1411
+
--
1412
+
A vector is specified using the Cypher syntax for maps.
1413
+
The map must specify both the `coordinateType` and the `dimensions` of the vector.
1414
+
The `coordinateType` can be one of `byte`, `short`, `int`, `long`, `float`, or `double`.
1415
+
The `dimensions` must be between 1 and 4096, inclusive.
1416
+
1417
+
By default, vector values are separated by `;`.
1418
+
A different delimiter can be specified with `--vector-delimiter`.
1419
+
1420
+
The dimensions of each vector in the data must match what is specified in the header.
1421
+
1422
+
A vector in a header could for example look like this:
0 commit comments