public class GraphManager extends Object
| Constructor and Description |
|---|
GraphManager(RestClient client,
String graph) |
public GraphManager(RestClient client, String graph)
public String graph()
public List<Vertex> listVertices(String label, Map<String,Object> properties, int limit)
public List<Vertex> listVertices(String label, Map<String,Object> properties, boolean keepP)
public List<Vertex> listVertices(String label, Map<String,Object> properties, boolean keepP, int limit)
public List<Vertex> listVertices(String label, Map<String,Object> properties, int offset, int limit)
public List<Vertex> listVertices(String label, Map<String,Object> properties, boolean keepP, int offset, int limit)
public Iterator<Vertex> iterateVertices(String label, Map<String,Object> properties, int sizePerPage)
public void removeVertex(Object vertexId)
public List<Vertex> updateVertices(BatchVertexRequest request)
public int updateVertices(BatchOlapPropertyRequest request)
public Edge addEdge(Vertex source, String label, Vertex target, Map<String,Object> properties)
public Edge addEdge(Object sourceId, String label, Object targetId, Map<String,Object> properties)
public List<Edge> listEdges(String label, Map<String,Object> properties, boolean keepP, int limit)
public List<Edge> getEdges(Object vertexId, Direction direction, String label, Map<String,Object> properties)
public List<Edge> getEdges(Object vertexId, Direction direction, String label, Map<String,Object> properties, int offset, int limit)
public List<Edge> getEdges(Object vertexId, Direction direction, String label, Map<String,Object> properties, boolean keepP, int offset, int limit)
public Iterator<Edge> iterateEdges(String label, Map<String,Object> properties, int sizePerPage)
public Iterator<Edge> iterateEdges(Object vertexId, Direction direction, int sizePerPage)
public Iterator<Edge> iterateEdges(Object vertexId, Direction direction, String label, int sizePerPage)
public Iterator<Edge> iterateEdges(Object vertexId, Direction direction, String label, Map<String,Object> properties, int sizePerPage)
public void removeEdge(String edgeId)
public List<Edge> updateEdges(BatchEdgeRequest request)
Copyright © 2023 The Apache Software Foundation. All rights reserved.