We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95fa46f commit 67c4f77Copy full SHA for 67c4f77
src/main/java/com/redislabs/redisgraph/RedisGraphAPI.java
@@ -49,15 +49,15 @@ public ResultSet query(String query) {
49
}
50
51
/**
52
- * Delete the all graph
+ * Deletes the entire graph
53
*
54
- * @return
+ * @return delete running time statistics
55
*/
56
- public String deleteGraph() {
57
- try (Jedis conn = _conn()) {
+ public String deleteGraph() {
+ try (Jedis conn = _conn()) {
58
return sendCommand(conn, Command.DELETE, graphId).getBulkReply();
59
- }
60
+ }
61
62
63
private BinaryClient sendCommand(Jedis conn, ProtocolCommand provider, String ...args) {
0 commit comments