diff --git a/interactive_engine/compiler/src/main/java/com/alibaba/graphscope/GraphServer.java b/interactive_engine/compiler/src/main/java/com/alibaba/graphscope/GraphServer.java index 54a339b88afc..1e70a0c9b358 100644 --- a/interactive_engine/compiler/src/main/java/com/alibaba/graphscope/GraphServer.java +++ b/interactive_engine/compiler/src/main/java/com/alibaba/graphscope/GraphServer.java @@ -166,6 +166,12 @@ private static GraphProperties getTestGraph(Configs configs) { case "csr": testGraph = TestGraphFactory.MCSR; break; + case "grinv6d": + testGraph = TestGraphFactory.GRINV6D; + break; + case "gringraphar": + testGraph = TestGraphFactory.GRINGRAPHAR; + break; default: throw new IllegalArgumentException("unknown graph store type"); }