Interface VertexInterface
-
- All Known Subinterfaces:
Session
- All Known Implementing Classes:
DefaultSession
public interface VertexInterface
Create/Update/Read/Delete vertex
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Result<String>
addVertex(String graphId, com.alibaba.graphscope.interactive.models.VertexEdgeRequest request)
Result<String>
deleteVertex(String graphId, List<com.alibaba.graphscope.interactive.models.DeleteVertexRequest> requests)
Result<com.alibaba.graphscope.interactive.models.VertexData>
getVertex(String graphId, String label, Object primaryKey)
Result<String>
updateVertex(String graphId, com.alibaba.graphscope.interactive.models.VertexEdgeRequest request)
-
-
-
Method Detail
-
addVertex
Result<String> addVertex(String graphId, com.alibaba.graphscope.interactive.models.VertexEdgeRequest request)
-
updateVertex
Result<String> updateVertex(String graphId, com.alibaba.graphscope.interactive.models.VertexEdgeRequest request)
-
getVertex
Result<com.alibaba.graphscope.interactive.models.VertexData> getVertex(String graphId, String label, Object primaryKey)
-
-