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 Blaze (v4)
  • Ultipa Powerhouse (v5)

Standalone

learn more about the four main severs in the architecture of Ultipa Powerhouse (v5) , click

here

Please complete this required field.

Please complete this required field.

Please complete this required field.

Please complete this required field.

Leave it blank if an HDC service is not required.

Please complete this required field.

Leave it blank if an HDC service is not required.

Please complete this required field.

Please complete this required field.

Mac addresses of all servers, separated by line break or comma.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Maximum Shard Services
Maximum Total Cores for Shard Service
Maximum HDC Services
Maximum Total Cores for HDC Service
Applied Validity Period(days)
Effective Date
Expired Date
Mac Address
Reason for Application
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
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

v5.2
Search
    English
    v5.2

      Schema Overview

      HDC

      Overview

      The Schema Overview algorithm summarizes the structure of a graph by presenting statistics for source node schemas (labels), edge schemas, end node schemas, and the corresponding edge counts.

      Example Graph

      Run the following statements on an empty graph to define its structure and insert data:

      ALTER GRAPH CURRENT_GRAPH ADD NODE {
        account (), 
        movie (),
        country (),
        director ()
      };
      ALTER GRAPH CURRENT_GRAPH ADD EDGE {
        follow ()-[]->(),
        like ()-[]->(),
        filmedIn ()-[]->(),
        direct ()-[]->()
      };
      INSERT (David:account {_id: "David"}),
             (Emily:account {_id: "Emily"}),
             (Alice:account {_id: "Alice"}),
             (Titanic:movie {_id: "Titanic"}),
             (Avatar:movie {_id: "Avatar"}),
             (Mexico:country {_id: "Mexico"}),
             (JC:director {_id: "James Cameron"}),
             (David)-[:follow]->(Alice),
             (Emily)-[:follow]->(Alice),
             (Alice)-[:like]->(Titanic),
             (Titanic)-[:filmedIn]->(Mexico),
             (JC)-[:direct]->(Titanic),
             (JC)-[:direct]->(Avatar);
      

      create().node_schema("account").node_schema("movie").node_schema("country").node_schema("director").edge_schema("follow").edge_schema("like").edge_schema("filmedIn").edge_schema("direct");
      insert().into(@account).nodes([{_id:"David"}, {_id:"Emily"}, {_id:"Alice"}]);
      insert().into(@movie).nodes([{_id:"Titanic"}, {_id:"Avatar"}]);
      insert().into(@country).nodes({_id:"Mexico"});
      insert().into(@director).nodes({_id:"James Cameron"});
      insert().into(@follow).edges([{_from:"David", _to:"Alice"}, {_from:"Emily", _to:"Alice"}]);
      insert().into(@like).edges({_from:"Alice", _to:"Titanic"});
      insert().into(@filmedIn).edges({_from:"Titanic", _to: "Mexico"});
      insert().into(@direct).edges([{_from:"James Cameron", _to:"Titanic"}, {_from:"James Cameron", _to:"Avatar"}]);
      

      Creating HDC Graph

      To load the entire graph to the HDC server hdc-server-1 as my_hdc_graph:

      CREATE HDC GRAPH my_hdc_graph ON "hdc-server-1" OPTIONS {
        nodes: {"*": ["*"]},
        edges: {"*": ["*"]},
        direction: "undirected",
        load_id: true,
        update: "static"
      }
      

      hdc.graph.create("my_hdc_graph", {
        nodes: {"*": ["*"]},
        edges: {"*": ["*"]},
        direction: "undirected",
        load_id: true,
        update: "static"
      }).to("hdc-server-1")
      

      Parameters

      Algorithm name: schema_overview

      Name
      Type
      Spec
      Default
      Optional
      Description
      order String asc, desc / Yes Sorts the results by count.

      Full Return

      CALL algo.schema_overview.run("my_hdc_graph", {}) YIELD r
      RETURN r
      

      exec{
        algo(schema_overview).params() as r
        return r
      } on my_hdc_graph
      

      Result:

      node schema(src)
      edge schema
      node schema(dest)
      count
      account follow account 2
      account like movie 1
      movie filmedIn country 1
      director direct movie 2

      Stream Return

      CALL algo.schema_overview.stream("my_hdc_graph", {}) YIELD r
      FILTER r.`node schema(src)` = "account" 
      RETURN r
      

      exec{
        algo(schema_overview).params().stream() as r
        where r.`node schema(src)` == "account" 
        return r
      } on my_hdc_graph
      

      Result:

      node schema(src)
      edge schema
      node schema(dest)
      count
      account follow account 2
      account like movie 1
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写
      Privacy Policy
      Please agree to continue.

      Copyright © 2019-2025 Ultipa Inc. – All Rights Reserved   |  Security   |  Legal Notices   |  Web Use Notices