List Graph
Get Graph List with information such as counts of nodes and edges
graphs, _ := client.ListGraph(nil)
Create Graph
graph := &structs.Graph{
Name: "new_graph",
Description: "my new graph",
}
resp, err := client.CreateGraph(graph, nil)
log.Println(resp.Status.Code, err)
Drop Graph
resp, err := client.DropGraph("old_graph", nil)
log.Println(resp.Status.Code, err)
Check Graph is exist
isExist, err := client.HasGraph("exist_graph", nil)
log.Println(isExist, err)