|| apoc.create.uuid - APOC 核心文档 - Neo4j 文档

apoc.create.uuid

此函数已弃用。请改用 Neo4j randomUUID() 函数。

详情

语法

apoc.create.uuid()

描述

返回一个 UUID。

返回

字符串

使用示例

以下生成一个新的 UUID

apoc.create.uuid
RETURN apoc.create.uuid() AS Output;
Cypher 的 randomUUID() 函数
RETURN randomUUID() AS Output;
结果
输出

"3bfef4ba-564e-4ce1-b3af-616651f90aff"

© . This site is unofficial and not affiliated with Neo4j, Inc.