修改密码

请输入密码
请输入密码 请输入8-64长度密码 和 email 地址不相同 至少包括数字、大写字母、小写字母、半角符号中的 3 个
请输入密码
提交

修改昵称

当前昵称:
提交

申请证书

证书详情

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

服务器的MAC地址

Please complete this required field.

Please complete this required field.

取消
申请
ID
产品
状态
核数
申请天数
审批时间
过期时间
MAC地址
申请理由
审核信息
关闭
基础信息
  • 用户昵称:
  • 手机号:
  • 公司名称:
  • 公司邮箱:
  • 地区:
  • 语言:
修改密码
申请证书

当前未申请证书.

申请证书
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

ProductName CreateTime ID Price File
ProductName CreateTime ID Price File

No Invoice

搜索
    中文

      UNCOLLECT 展开

      格式、参数

      UNCOLLECT 可以将数据流中的每行数据展开或复制为多行。被展开的是一个类型为 ARRAY 的数据列,其内每行数组的每个元素在展开后各占一行,其同源列的每行数据将相应复制为多行。展开之后的数据流长度为原先每行数组的长度之和。

      语法:

      • 格式:uncollect <column> as <alias>
      • 参数:(见下表)
      • 受影响列:<column> 及其所有同源列
      名称 类型 规范 描述
      <column> ARRAY / 被展开的数组列
      <alias> string 同自定义别名的命名规范 数组列被展开后的别名,不可省略

      详解

      n(2).e()[:3].n(4) as path
      with pnodes(path) as a1
      uncollect a1 as a2
      return path, a2
      

      上面 UQL 代码中的 UNCOLLECT 子句将一个 ARRAY 列展开为 6 行,将其同源列复制为 6 行:

      一般用法

      示例:查找以银行卡 CA001 为起点、CA003 为终点的三步以内的路径,将这些路径上的点去重后依次返回

      ab().src({_id == "CA001"}).dest({_id == "CA003"}).depth(:3) as p 
      with pnodes(p) as a
      uncollect a as n
      return distinct(n)
      
      请完成以下信息后可下载此书
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写
      *
      你的电话必须填写