, , , APOC UUID.
APOC, UUID, apoc.create.uuid. APOC , CALL. , Foo node UUID:
CREATE (f:Foo {uuid: apoc.create.uuid()})
RETURN f;
APOC, apoc.create.uuids(count), UUID. , 5 Foo UUID:
CALL apoc.create.uuids(5) YIELD uuid
CREATE (f:Foo {uuid: uuid})
RETURN f;