Interface GraphInterface
-
- All Known Subinterfaces:
Session
- All Known Implementing Classes:
DefaultSession
public interface GraphInterfaceAll APIs about Graph Creation/Deletion/Updating/Getting, and dataloading.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Result<com.alibaba.graphscope.interactive.models.JobResponse>bulkLoading(String graphId, com.alibaba.graphscope.interactive.models.SchemaMapping mapping)Result<com.alibaba.graphscope.interactive.models.CreateGraphResponse>createGraph(com.alibaba.graphscope.interactive.models.CreateGraphRequest graph)Result<String>deleteGraph(String graphId)Result<List<com.alibaba.graphscope.interactive.models.GetGraphResponse>>getAllGraphs()Result<com.alibaba.graphscope.interactive.models.GetGraphResponse>getGraphMeta(String graphId)Result<com.alibaba.graphscope.interactive.models.GetGraphSchemaResponse>getGraphSchema(String graphId)Result<com.alibaba.graphscope.interactive.models.GetGraphStatisticsResponse>getGraphStatistics(String graphId)
-
-
-
Method Detail
-
bulkLoading
Result<com.alibaba.graphscope.interactive.models.JobResponse> bulkLoading(String graphId, com.alibaba.graphscope.interactive.models.SchemaMapping mapping)
-
createGraph
Result<com.alibaba.graphscope.interactive.models.CreateGraphResponse> createGraph(com.alibaba.graphscope.interactive.models.CreateGraphRequest graph)
-
getGraphSchema
Result<com.alibaba.graphscope.interactive.models.GetGraphSchemaResponse> getGraphSchema(String graphId)
-
getGraphStatistics
Result<com.alibaba.graphscope.interactive.models.GetGraphStatisticsResponse> getGraphStatistics(String graphId)
-
getGraphMeta
Result<com.alibaba.graphscope.interactive.models.GetGraphResponse> getGraphMeta(String graphId)
-
-