UUIDsEnterprise EditionIntroduced in Neo4j 2026.08
UUID values can be created and stored as properties on nodes and relationships.
|
Only the |
The UUID type
The UUID type is a 128-bit identifier, commonly used to uniquely identify objects within a distributed system.
In Cypher, UUID values are stored as a dedicated type and can be represented as a hexadecimal string in the format 8-4-4-4-12 (e.g., 550e8400-e29b-41d4-a716-446655440000).
UUID valueuuid("550e8400-e29b-41d4-a716-446655440000")
In this example, the string "550e8400-e29b-41d4-a716-446655440000" is a valid representation of a UUID.
Cypher’s UUID type does not guarantee a specific UUID version.
See the RFC 9562 Universally Unique IDentifiers (UUIDs) documentation for details on the different UUID versions.
|