修改密码

请输入密码
请输入密码 请输入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

搜索
    中文

      查询操作

      查找点

      // 通过参数查找点
      let result = await client.searchNodes({
          filter: `{ age > 100 }`, // node(<>) 过滤条件
          limit: 10,
          return: "name, age" // 返回的点携带属性 name、age
      })
      
      // 通过 uql 查找点
      let result = await client.uql(`find().nodes({ age > 100 }) as result return result{*} limit 10`)
      

      查询边

      // 通过参数查找边
      let result = await client.searchEdges({
          filter: `{ type in [1, 3, 5] }`, // edge(<>) 过滤条件
          limit: 10,
          return: "*" // 返回的边携带所有属性
      })
      
      // 通过 uql 查找边
      let result = await client.uql(`find().edges({ type in [1, 3, 5] }) as result return result{*} limit 10`)
      

      AB 路径查询

      // 通过参数进行 AB 路径查询
      let result = await client.searchAb({
          src: "U001",
          dest: "U002",
          depth: 3,
          limit: 5,
          return: "*"
      })
      
      // 通过 uql 进行 AB 路径查询
      let result = await client.uql(`ab().src({_id == 'U001'}).dest({_id == 'U002'}).depth(:3) as paths return paths{*} limit 5`)
      

      Khop 查询

      // 通过参数进行 khop 查询
      let result = await client.searchKhop({
          src: "U001",
          edgeFilter: `{ @own }`,
          depth: 3,
          limit: 5,
          return: "*"
      })
      
      // 通过 uql 进行 khop 查询
      let result = await client.uql(`
      khop().src({_id == 'U001'}).depth(3).edge_filter({ @own })
       as result return result{*} limit 5
      `)
      

      自动展开

      // 通过参数进行自动展开
      let result = await client.spread({
          src: "U001",
          depth: 3,
          limit: 100,
          nodeFilter: `{@card}`,
          edgeFilter: `{@transaction || @card}`,
          direction: "right",
          return: "*"
      })
      
      // 通过 uql 进行自动展开
      let result = await client.uql(`
      spread().src({_id == 'U001'}).depth(3).node_filter({@card})
      .edge_filter({@transaction || @card}).direction(right) as result 
      return result{*} limit 100
      `)
      

      自动组网

      // 通过参数进行自动组网
      let result = await client.searchAutoNet({
          src: `{ _id == "U001"}`,
          depth: 3,
          nodeFilter: `{@card}`,
          edgeFilter: `{@transaction || @card}`,
      })
      
      // 通过 uql 进行自动组网
      let result = await client.uql(`
      autonet().src({_id in ['U001','U002']}).dest({_id in ['U003','U004']}).depth(:5) 
      as path return path limit 1
      `)
      

      模板查询

      // 通过 uql 进行模板查询
      let result = await client.uql(`
      n({_id == 'U001'}).re({@own}).n({@card}).re({@transaction}).n({@card}).le({@own}).n({_id == 'U002'})
      as paths return paths
      `)
      
      请完成以下信息后可下载此书
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写
      *
      你的电话必须填写