apoc.path 限定名称 类型 apoc.path.expand apoc.path.expand(startNode ANY, relFilter STRING, labelFilter STRING, minDepth INTEGER, maxDepth INTEGER) - 返回从起始NODE按给定RELATIONSHIP类型从最小深度到最大深度扩展的PATH值。 过程 apoc.path.expandConfig apoc.path.expandConfig(startNode ANY, config MAP<STRING, ANY>) - 返回从起始NODE按给定RELATIONSHIP类型从最小深度到最大深度扩展的PATH值。 过程 apoc.path.spanningTree apoc.path.spanningTree(startNode ANY, config MAP<STRING, ANY>) - 返回从起始NODE按给定RELATIONSHIP类型到最大深度扩展的生成树PATH值。 过程 apoc.path.subgraphAll apoc.path.subgraphAll(startNode ANY, config MAP<STRING, ANY>) - 返回从起始NODE按给定RELATIONSHIP类型到最大深度可达的子图。 过程 apoc.path.subgraphNodes apoc.path.subgraphNodes(startNode ANY, config MAP<STRING, ANY>) - 返回从起始NODE按给定RELATIONSHIP类型到最大深度可达的子图中的NODE值。 过程 apoc.path.combine apoc.path.combine(path1 PATH, path2 PATH) - 将两个给定的PATH值合并为一个PATH。 函数 apoc.path.create apoc.path.create(startNode NODE, rels LIST<RELATIONSHIP>) - 返回从给定起始NODE和LIST<RELATIONSHIP>创建的PATH。 函数 apoc.path.elements apoc.path.elements(path PATH) - 将给定PATH转换为LIST<NODE | RELATIONSHIP>。 函数 apoc.path.slice apoc.path.slice(path PATH, offset INTEGER, length INTEGER) - 返回从给定PATH的给定偏移量处截取指定长度的新PATH。 函数 apoc.number.romanToArabic apoc.path.expand