Delete removes the graph.
()
| 74 | |
| 75 | // Delete removes the graph. |
| 76 | func (g *Graph) Delete() error { |
| 77 | _, err := g.Conn.Do("GRAPH.DELETE", g.Id) |
| 78 | return err |
| 79 | } |
| 80 | |
| 81 | // Flush will create the graph and clear it |
| 82 | func (g *Graph) Flush() (*QueryResult, error) { |
no outgoing calls