Property values

This describes how both nodes and relationships can have properties.

Properties are named values where the name is a string. Property values can be either a primitive or an array of one primitive type. For example String, int, and int[] values are valid for properties.

NULL is not a valid property value. Setting a property to NULL is equivalent to deleting the property.

Table 1. Property value types
Type Description

boolean

byte

8-bit integer.

short

16-bit integer.

int

32-bit integer.

long

64-bit integer.

float

32-bit IEEE 754 floating-point number.

double

64-bit IEEE 754 floating-point number.

char

16-bit unsigned integers representing Unicode characters.

String

Sequence of Unicode characters.

org.neo4j.graphdb.spatial.Point

A 2D or 3D point object in a given coordinate system.

java.time.LocalDate