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 (such as @*&#).
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

v4.2
Search
中文EN
v4.2

    Graph

    showGraph()

    Method and class:

    def showGraph(self, 
    			  requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
    ) -> ULTIPA_RESPONSE.ResponseListGraph
    

    Example: Acquire information of all graphsets

    from ultipa import Connection, UltipaConfig
    
    # omit code of establishing server connection 'conn' using graphset 'default'
    
    req = conn.showGraph()
    req.Print()
    

    getGraph()

    Method and class:

    def getGraph(self, 
             	 request: ULTIPA_REQUEST.Graph, 
                 requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
    ) -> ULTIPA_RESPONSE.ResponseGraph
    
    class Graph:
    	def __init__(self, graph: str, description: str = None)
    

    Example: Acquire information of graphset 'test'

    from ultipa import Connection, UltipaConfig
    
    # omit code of establishing server connection 'conn' using graphset 'default'
    
    req = conn.getGraph(ULTIPA_REQUEST.Graph("test"))
    req.Print()
    

    createGraph()

    Method and class:

    def createGraph(self, 
    				request: ULTIPA_REQUEST.Graph,
                    requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
    ) -> ULTIPA_RESPONSE.UltipaResponse
    
    class Graph:
    	def __init__(self, graph: str, description: str = None)
    

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

    from ultipa import Connection, UltipaConfig
    from ultipa import ULTIPA_REQUEST
    
    # omit code of establishing server connection 'conn' using graphset 'default'
    
    req = conn.createGraph(ULTIPA_REQUEST.Graph("testGraph", "graphset for test"))
    req.Print()
    

    alterGraph()

    Method and class:

    def alterGraph(self, 
    		 	  request: ULTIPA_REQUEST.AlterGraph,
                  requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
    ) -> ULTIPA_RESPONSE.UltipaResponse
    
    class AlterGraph:
    	def __init__(self, oldGraphName: str, newGraphName: str, newDescription: str = None)
    

    Example: Modify graphset 'testGraph' with new name 'newGraph' and new description 'rename testGraph as newGraph'

    from ultipa import Connection, UltipaConfig
    from ultipa import ULTIPA_REQUEST
    
    # omit code of establishing server connection 'conn' using graphset 'default'
    
    req = conn.alterGraph(ULTIPA_REQUEST.AlterGraph("testGraph","newGraph","rename testGraph as newGraph"))
    req.Print()
    

    dropGraph()

    Method and class:

    def dropGraph(self, 
    			  request: ULTIPA_REQUEST.Graph,
                  requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
    ) -> ULTIPA_RESPONSE.UltipaResponse
    
    class Graph:
    	def __init__(self, graph: str, description: str = None)
    

    Example: Delete graphset 'newGraph'

    from ultipa import Connection, UltipaConfig
    from ultipa import ULTIPA_REQUEST
    
    # omit code of establishing server connection 'conn' using graphset 'default'
    
    req = conn.dropGraph(ULTIPA_REQUEST.Graph("newGraph"))
    req.Print()
    
    Please complete the following information to download this book
    *
    公司名称不能为空
    *
    公司邮箱必须填写
    *
    你的名字必须填写
    *
    你的电话必须填写
    *
    你的电话必须填写