修改密码

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

修改昵称

当前昵称:
提交

v4.0
搜索
中文EN
v4.0

    插入操作

    插入点

    // uql批量插入(不超过 100 条数据)
    let result = await client.insertNodes({
        schema: "test_schema",
        rows: [
            {_id: "ID1", name: "Bob"},
            {_id: "ID2", name: "Alice"},
            // ...
        ],
        overwrite: true // or false
    }, {
        graphSetName: "test_graph"
    })
    // rpc批量插入(不超过 50000 条数据)
    let result = await client.insertHugeNodes({
        schemaName: "test_schema",
        headers: ["_id", "name"],
        rows: [
            ["ID1", "Bob"],
            ["ID2", "Alice"],
            // ...
        ],
        insertTypeOverwrite: true // or false
    }, {
        graphSetName: "test_graph"
    })
    

    插入边

    // uql批量插入(不超过 100 条数据)
    let result = await client.insertEdges({
        schema: "test_schema",
        rows: [
            {_from: "ID1", _to: "ID2", type: "friend"},
            {_from: "ID2", _to: "ID1", type: "friend"},
            // ...
        ],
        overwrite: true // or false
    }, {
        graphSetName: "test_graph"
    })
    // rpc批量插入(不超过 50000 条数据)
    let result = await client.insertHugeNodes({
        schemaName: "test_schema",
        headers: ["_from", "_to", "type"],
        rows: [
            ["ID1", "ID2", "friend"],
            ["ID2", "ID1", "friend"],
            // ...
        ],
        insertTypeOverwrite: true // or false
    }, {
        graphSetName: "test_graph"
    })
    
    请完成以下信息后可下载此书
    *
    公司名称不能为空
    *
    公司邮箱必须填写
    *
    你的名字必须填写
    *
    你的电话必须填写
    *
    你的电话必须填写