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

      Graph

      ListGraph()

      Method and class:

      ListGraph(config *configuration.RequestConfig) (*http.ResponseGraphs, error)
      

      Example: Acquire all graphsets

      func TestMisc(t *testing.T) {
          // omit code of establishing server connection 'conn'
        
          responseGraphs, _ := conn.ListGraph(nil)
      	for i := 0; i < len(responseGraphs.Graphs); i++ {
      		fmt.Println(*responseGraphs.Graphs[i])
      	}
      }
      

      CreateGraph()

      Method and class:

      CreateGraph(graph *structs.Graph, config *configuration.RequestConfig) (*http.UQLResponse, error)
      
      Graph struct {
      	ID          types.ID
      	Name        string
      	Description string
      	TotalNodes  uint64
      	TotalEdges  uint64
      	Status      string
      }
      

      Example: Create graphset with name 'testGraph' and description 'graphset for test'

      func TestMisc(t *testing.T) {
          // omit code of establishing server connection 'conn'
      
      	graph := &structs.Graph{
      		Name:        "testGraph",
      		Description: "graphset for test",
      	}
      
      	uqlResponse, err := conn.CreateGraph(graph, nil)
      	log.Println(uqlResponse.Status.Code, err)
      }
      

      DropGraph()

      Method and class:

      DropGraph(graphName string, config *configuration.RequestConfig) (*http.UQLResponse, error)
      

      Example: Delete graphset 'newGraph'

      func TestMisc(t *testing.T) {
          // omit code of establishing server connection 'conn'
      
        	uqlResponse, err := conn.DropGraph("testGraph", nil)
      	log.Println(uqlResponse.Status.Code, err)
      }
      

      HasGraph()

      Method and class:

      HasGraph(graphName string, config *configuration.RequestConfig) (bool, error)
      

      Example: Check if graphset 'newGraph' already exists

      func TestMisc(t *testing.T) {
          // omit code of establishing server connection 'conn'
      
      	isExist, err := conn.HasGraph("testGraph", nil)
      	log.Println(isExist, err)
      }
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写