Change Password

Please enter the password.
Please enter the password. Between 8-64 characters. Not identical to your email address. Contain at least 3 of: uppercase, lowercase, numbers, and special characters.
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Apply New License

License Detail

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

The MAC address of the server you want to deploy.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Applied Validity Period(days)
Effective Date
Excpired Date
Mac Address
Apply Comment
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
  • Country:
  • Language:
Change Password
Apply

You have no license application record.

Apply
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

Product Created On ID Amount (USD) Invoice
Product Created On ID Amount (USD) Invoice

No Invoice

Search
    English

      Overwrite

      Overwrite means to update or clear values of properties other than UUID and ID; properties carried in the data will be updated, while those are not will be left as an empty string, null or 0 based on their data type.

      Overwriting will insert or overwrite one or multiple nodes/edges in the current GraphSet:

      • Overwrite nodes: specify existent UUID or ID in the GraphSet, or both that match the correspondence in the GraphSet; the operation fails when the specified UUID and ID pair violates the mapping relationship in the GraphSet; when either the specified UUID or ID or neither does not exist in the GraphSet, or neither of them is specified, the insertion operation will be triggered.
      • Overwrite edges: specify UUID; when the specified UUID does not exist in the GraphSet, or UUID is not specified, the insertion operation will be triggered; the operation fails if the start/end node of edge is not included or not existent.

      Syntax:

      • Command: insert().overwrite().into(@<schema>)
      • Parameter: nodes() or edges(), custom alias not supported
      • Statement Alias: Custom alias supported, structure type is NODE or EDGE

      It is not suggested to execute overwriting operation after streaming return of an algorithm, see details on stream() in document Ultipa Graph Analytics & Algorithms - Using Algorithms - Execution Method.

      // To overwrite nodes of a certain schema in the current graphset
      insert().overwrite().into(@<schema>)
        .nodes([				// Square brackets can be omitted if overwrites only one node
          {<property1>:<value1>, <property2>:<value2>, ...},
          {<property1>:<value1>, <property2>:<value2>, ...},
          ...
        ])
        
      // To overwrite edges of a certain schema in the current graphset, must carry _from and _to, or must carry _from_uuid and _to_uuid
      insert().overwrite().into(@<schema>)
        .edges([				// Square brackets can be omitted if overwrites only one edge
          {<property1>:<value1>, <property2>:<value2>, ...},
          {<property1>:<value1>, <property2>:<value2>, ...},
          ...
        ])
      

      Example: Given an account U001 named "test", overwrite the account if it already exists, otherwise insert the account; check the account information after the operation

      insert().overwrite().into(@account)
        .nodes({_id: "U001", name: "test"}) as nodes
      return nodes{*}
      

      Example: Overwrite transaction edge of UUID = 1 with transaction No. TRX001 and from C001 to C003, or insert such an edge if not existing; insert another transaction edge with No. TRX003 and from C003 to C001 in the same UQL

      insert().overwrite().into(@transaction)
        .edges([
        	{no: "TRX001", _from: "C001", _to: "C003", _uuid: 1},
        	{no: "TRX003", _from: "C003", _to: "C001"}
      ])
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写