| Package | Description |
|---|---|
| org.vertexium | |
| org.vertexium.mutation | |
| org.vertexium.property | |
| org.vertexium.query | |
| org.vertexium.search | |
| org.vertexium.util |
| Modifier and Type | Method and Description |
|---|---|
Authorizations |
GraphBase.createAuthorizations(Authorizations auths,
Collection<String> additionalAuthorizations) |
Authorizations |
Graph.createAuthorizations(Authorizations auths,
Collection<String> additionalAuthorizations)
Creates an authorizations object combining auths and additionalAuthorizations.
|
Authorizations |
GraphBase.createAuthorizations(Authorizations auths,
String... additionalAuthorizations) |
Authorizations |
Graph.createAuthorizations(Authorizations auths,
String... additionalAuthorizations)
Creates an authorizations object combining auths and additionalAuthorizations.
|
Authorizations |
GraphBase.createAuthorizations(Collection<String> auths) |
Authorizations |
Graph.createAuthorizations(Collection<String> auths)
Creates an authorizations object.
|
abstract Authorizations |
GraphBaseWithSearchIndex.createAuthorizations(String... auths) |
abstract Authorizations |
GraphBase.createAuthorizations(String... auths) |
Authorizations |
Graph.createAuthorizations(String... auths)
Creates an authorizations object.
|
Authorizations |
Element.getAuthorizations()
Gets the authorizations used to get this element.
|
Authorizations |
ElementBase.getAuthorizations() |
Authorizations |
SecurityVertexiumException.getAuthorizations() |
| Modifier and Type | Method and Description |
|---|---|
Edge |
GraphBase.addEdge(String edgeId,
String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(String edgeId,
String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
Edge |
GraphBase.addEdge(String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
Edge |
GraphBase.addEdge(String edgeId,
Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(String edgeId,
Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
Edge |
GraphBase.addEdge(Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
void |
Element.addPropertyValue(String key,
String name,
Object value,
Metadata metadata,
Visibility visibility,
Authorizations authorizations)
Adds or updates a property.
|
void |
ElementBase.addPropertyValue(String key,
String name,
Object value,
Metadata metadata,
Visibility visibility,
Authorizations authorizations) |
void |
Element.addPropertyValue(String key,
String name,
Object value,
Visibility visibility,
Authorizations authorizations)
Adds or updates a property.
|
void |
ElementBase.addPropertyValue(String key,
String name,
Object value,
Visibility visibility,
Authorizations authorizations) |
Vertex |
GraphBase.addVertex(String vertexId,
Visibility visibility,
Authorizations authorizations) |
Vertex |
Graph.addVertex(String vertexId,
Visibility visibility,
Authorizations authorizations)
Adds a vertex to the graph.
|
Vertex |
GraphBase.addVertex(Visibility visibility,
Authorizations authorizations) |
Vertex |
Graph.addVertex(Visibility visibility,
Authorizations authorizations)
Adds a vertex to the graph.
|
Iterable<Vertex> |
GraphBase.addVertices(Iterable<ElementBuilder<Vertex>> vertices,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.addVertices(Iterable<ElementBuilder<Vertex>> vertices,
Authorizations authorizations)
Adds the vertices to the graph.
|
Authorizations |
GraphBase.createAuthorizations(Authorizations auths,
Collection<String> additionalAuthorizations) |
Authorizations |
Graph.createAuthorizations(Authorizations auths,
Collection<String> additionalAuthorizations)
Creates an authorizations object combining auths and additionalAuthorizations.
|
Authorizations |
GraphBase.createAuthorizations(Authorizations auths,
String... additionalAuthorizations) |
Authorizations |
Graph.createAuthorizations(Authorizations auths,
String... additionalAuthorizations)
Creates an authorizations object combining auths and additionalAuthorizations.
|
abstract void |
GraphBaseWithSearchIndex.deleteEdge(Edge edge,
Authorizations authorizations) |
abstract void |
GraphBase.deleteEdge(Edge edge,
Authorizations authorizations) |
void |
Graph.deleteEdge(Edge edge,
Authorizations authorizations)
Permanently deletes an edge from the graph.
|
void |
GraphBase.deleteEdge(String edgeId,
Authorizations authorizations) |
void |
Graph.deleteEdge(String edgeId,
Authorizations authorizations)
Permanently deletes an edge from the graph.
|
void |
Element.deleteProperties(String name,
Authorizations authorizations)
Permanently deletes all properties with the given name that you have access to.
|
abstract void |
ElementBase.deleteProperties(String name,
Authorizations authorizations) |
void |
Element.deleteProperty(String key,
String name,
Authorizations authorizations)
Permanently deletes a property given it's key and name from the element.
|
abstract void |
ElementBase.deleteProperty(String key,
String name,
Authorizations authorizations) |
void |
Element.deleteProperty(String key,
String name,
Visibility visibility,
Authorizations authorizations)
Permanently deletes a property given it's key and name from the element.
|
abstract void |
ElementBase.deleteProperty(String key,
String name,
Visibility visibility,
Authorizations authorizations) |
void |
GraphBase.deleteVertex(String vertexId,
Authorizations authorizations) |
void |
Graph.deleteVertex(String vertexId,
Authorizations authorizations)
Permanently deletes a vertex from the graph.
|
abstract void |
GraphBaseWithSearchIndex.deleteVertex(Vertex vertex,
Authorizations authorizations) |
abstract void |
GraphBase.deleteVertex(Vertex vertex,
Authorizations authorizations) |
void |
Graph.deleteVertex(Vertex vertex,
Authorizations authorizations)
Permanently deletes a vertex from the graph.
|
Map<String,Boolean> |
GraphBase.doEdgesExist(Iterable<String> ids,
Authorizations authorizations) |
Map<String,Boolean> |
Graph.doEdgesExist(Iterable<String> ids,
Authorizations authorizations)
Tests the existence of edges with the given authorizations.
|
Map<String,Boolean> |
GraphBase.doEdgesExist(Iterable<String> ids,
Long endTime,
Authorizations authorizations) |
Map<String,Boolean> |
Graph.doEdgesExist(Iterable<String> ids,
Long endTime,
Authorizations authorizations)
Tests the existence of edges with the given authorizations.
|
boolean |
GraphBase.doesEdgeExist(String edgeId,
Authorizations authorizations) |
boolean |
Graph.doesEdgeExist(String edgeId,
Authorizations authorizations)
Tests the existence of a edge with the given authorizations.
|
boolean |
GraphBase.doesVertexExist(String vertexId,
Authorizations authorizations) |
boolean |
Graph.doesVertexExist(String vertexId,
Authorizations authorizations)
Tests the existence of a vertex with the given authorizations.
|
Map<String,Boolean> |
GraphBase.doVerticesExist(Iterable<String> ids,
Authorizations authorizations) |
Map<String,Boolean> |
Graph.doVerticesExist(Iterable<String> ids,
Authorizations authorizations)
Tests the existence of vertices with the given authorizations.
|
boolean |
Authorizations.equals(Authorizations authorizations) |
Iterable<String> |
GraphBase.filterEdgeIdsByAuthorization(Iterable<String> edgeIds,
String authorizationToMatch,
EnumSet<ElementFilter> filters,
Authorizations authorizations) |
Iterable<String> |
Graph.filterEdgeIdsByAuthorization(Iterable<String> edgeIds,
String authorizationToMatch,
EnumSet<ElementFilter> filters,
Authorizations authorizations)
Filters a collection of edge ids by the authorizations of that edge, properties, etc.
|
Iterable<String> |
GraphBase.filterVertexIdsByAuthorization(Iterable<String> vertexIds,
String authorizationToMatch,
EnumSet<ElementFilter> filters,
Authorizations authorizations) |
Iterable<String> |
Graph.filterVertexIdsByAuthorization(Iterable<String> vertexIds,
String authorizationToMatch,
EnumSet<ElementFilter> filters,
Authorizations authorizations)
Filters a collection of vertex ids by the authorizations of that vertex, properties, etc.
|
Iterable<Path> |
GraphBase.findPaths(FindPathOptions options,
Authorizations authorizations) |
Iterable<Path> |
Graph.findPaths(FindPathOptions options,
Authorizations authorizations)
Finds all paths between two vertices.
|
Iterable<Path> |
GraphBase.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
Graph.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
GraphBase.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
Graph.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
GraphBase.findPaths(String sourceVertexId,
String destVertexId,
String[] labels,
int maxHops,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
Graph.findPaths(String sourceVertexId,
String destVertexId,
String[] labels,
int maxHops,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
GraphBase.findPaths(String sourceVertexId,
String destVertexId,
String[] labels,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
Graph.findPaths(String sourceVertexId,
String destVertexId,
String[] labels,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations)
Deprecated.
|
protected void |
GraphBase.findPathsRecursive(FindPathOptions options,
List<Path> foundPaths,
Vertex sourceVertex,
Vertex destVertex,
int hops,
Set<String> seenVertices,
Path currentPath,
ProgressCallback progressCallback,
Authorizations authorizations) |
protected void |
GraphBase.findPathsSetIntersection(FindPathOptions options,
List<Path> foundPaths,
Vertex sourceVertex,
Vertex destVertex,
ProgressCallback progressCallback,
Authorizations authorizations) |
Iterable<String> |
GraphBase.findRelatedEdgeIds(Iterable<String> vertexIds,
Authorizations authorizations) |
Iterable<String> |
Graph.findRelatedEdgeIds(Iterable<String> vertexIds,
Authorizations authorizations)
Given a list of vertex ids, find all the edge ids that connect them.
|
Iterable<String> |
GraphBase.findRelatedEdgeIds(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations) |
Iterable<String> |
Graph.findRelatedEdgeIds(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations)
Given a list of vertex ids, find all the edge ids that connect them.
|
Iterable<String> |
GraphBase.findRelatedEdgeIdsForVertices(Iterable<Vertex> verticesIterable,
Authorizations authorizations) |
Iterable<String> |
Graph.findRelatedEdgeIdsForVertices(Iterable<Vertex> vertices,
Authorizations authorizations)
Given a list of vertices, find all the edge ids that connect them.
|
Iterable<String> |
GraphBase.findRelatedEdges(Iterable<String> vertexIds,
Authorizations authorizations)
Deprecated.
|
Iterable<String> |
Graph.findRelatedEdges(Iterable<String> vertexIds,
Authorizations authorizations)
Deprecated.
|
Iterable<String> |
GraphBase.findRelatedEdges(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations)
Deprecated.
|
Iterable<String> |
Graph.findRelatedEdges(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations)
Deprecated.
|
Iterable<RelatedEdge> |
GraphBase.findRelatedEdgeSummary(Iterable<String> vertexIds,
Authorizations authorizations) |
Iterable<RelatedEdge> |
Graph.findRelatedEdgeSummary(Iterable<String> vertexIds,
Authorizations authorizations)
Given a list of vertex ids, find all the edges that connect them.
|
Iterable<RelatedEdge> |
GraphBase.findRelatedEdgeSummary(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations) |
Iterable<RelatedEdge> |
Graph.findRelatedEdgeSummary(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations)
Given a list of vertex ids, find all the edges that connect them.
|
Iterable<RelatedEdge> |
GraphBase.findRelatedEdgeSummaryForVertices(Iterable<Vertex> verticesIterable,
Authorizations authorizations) |
Iterable<RelatedEdge> |
Graph.findRelatedEdgeSummaryForVertices(Iterable<Vertex> vertices,
Authorizations authorizations)
Given a list of vertices, find all the edges that connect them.
|
Edge |
GraphBase.getEdge(String edgeId,
Authorizations authorizations) |
Edge |
Graph.getEdge(String edgeId,
Authorizations authorizations)
Get an edge from the graph.
|
Edge |
GraphBase.getEdge(String edgeId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Edge |
Graph.getEdge(String edgeId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Get an edge from the graph.
|
Edge |
GraphBase.getEdge(String edgeId,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Edge |
Graph.getEdge(String edgeId,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Get an edge from the graph.
|
long |
GraphBase.getEdgeCount(Authorizations authorizations) |
long |
Graph.getEdgeCount(Authorizations authorizations)
Gets a count of the number of edges in the system.
|
int |
Vertex.getEdgeCount(Direction direction,
Authorizations authorizations)
Gets count of edges on this vertex.
|
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
Authorizations authorizations)
Gets the connected edge ids.
|
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
String[] labels,
Authorizations authorizations)
Gets the connected edge ids.
|
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
String label,
Authorizations authorizations)
Gets the connected edge ids.
|
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
Authorizations authorizations)
Gets the connected edge ids.
|
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
String[] labels,
Authorizations authorizations)
Gets a list of edge ids between this vertex and another vertex.
|
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
String label,
Authorizations authorizations)
Gets the connected edge ids.
|
Iterable<EdgeInfo> |
Vertex.getEdgeInfos(Direction direction,
Authorizations authorizations)
Get a list of EdgeInfo.
|
Iterable<EdgeInfo> |
Vertex.getEdgeInfos(Direction direction,
String[] labels,
Authorizations authorizations)
Get a list of EdgeInfo.
|
Iterable<EdgeInfo> |
Vertex.getEdgeInfos(Direction direction,
String label,
Authorizations authorizations)
Get a list of EdgeInfo.
|
Iterable<String> |
Vertex.getEdgeLabels(Direction direction,
Authorizations authorizations)
Gets a list of edge labels.
|
Iterable<Edge> |
GraphBase.getEdges(Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Authorizations authorizations)
Gets all edges on the graph.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
Authorizations authorizations)
Gets all edges attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edges attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
String[] labels,
Authorizations authorizations)
Gets all edges with any of the given labels attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
String[] labels,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges with any of the given labels attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
String label,
Authorizations authorizations)
Gets all edges with the given label attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
String label,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges with the given label attached to this vertex.
|
Iterable<Edge> |
GraphBase.getEdges(EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges on the graph.
|
abstract Iterable<Edge> |
GraphBaseWithSearchIndex.getEdges(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
abstract Iterable<Edge> |
GraphBase.getEdges(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edges on the graph.
|
Iterable<Edge> |
GraphBase.getEdges(Iterable<String> ids,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Iterable<String> ids,
Authorizations authorizations)
Gets all edges on the graph matching the given ids.
|
Iterable<Edge> |
GraphBase.getEdges(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges on the graph matching the given ids.
|
Iterable<Edge> |
GraphBase.getEdges(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edges on the graph matching the given ids.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
Authorizations authorizations)
Gets all edges between this vertex and another vertex.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
String[] labels,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching any of the given labels.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
String[] labels,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching any of the given labels.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
String label,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching the given label.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
String label,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching the given label.
|
Iterable<Edge> |
GraphBase.getEdgesInRange(Range idRange,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdgesInRange(Range idRange,
Authorizations authorizations)
Gets edges from the graph in the given range.
|
Iterable<Edge> |
GraphBase.getEdgesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdgesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets edges from the graph in the given range.
|
Iterable<Edge> |
GraphBase.getEdgesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdgesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets edges from the graph in the given range.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
Authorizations authorizations)
Gets all edge/vertex pairs attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edge/vertex pairs attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edge/vertex pairs attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
String[] labels,
Authorizations authorizations)
Gets all edge/vertex pairs with any of the given labels attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
String[] labels,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edge/vertex pairs with any of the given labels attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
String label,
Authorizations authorizations)
Gets all edge/vertex pairs with the given label attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
String label,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edge/vertex pairs with the given label attached to this vertex.
|
static Iterable<EdgeVertexPair> |
EdgeVertexPair.getEdgeVertexPairs(Graph graph,
String sourceVertexId,
Iterable<EdgeInfo> edgeInfos,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<HistoricalPropertyValue> |
Element.getHistoricalPropertyValues(Authorizations authorizations)
Gets all property values from all timestamps in descending timestamp order.
|
Iterable<HistoricalPropertyValue> |
ElementBase.getHistoricalPropertyValues(Authorizations authorizations) |
Iterable<HistoricalPropertyValue> |
Element.getHistoricalPropertyValues(Long startTime,
Long endTime,
Authorizations authorizations)
Gets all property values from the given range of timestamps in descending timestamp order.
|
Iterable<HistoricalPropertyValue> |
ElementBase.getHistoricalPropertyValues(Long startTime,
Long endTime,
Authorizations authorizations) |
Iterable<HistoricalPropertyValue> |
Element.getHistoricalPropertyValues(String key,
String name,
Visibility visibility,
Authorizations authorizations)
Gets property values from all timestamps in descending timestamp order.
|
Iterable<HistoricalPropertyValue> |
ElementBase.getHistoricalPropertyValues(String key,
String name,
Visibility visibility,
Authorizations authorizations) |
Iterable<HistoricalPropertyValue> |
Element.getHistoricalPropertyValues(String key,
String name,
Visibility visibility,
Long startTime,
Long endTime,
Authorizations authorizations)
Gets property values from the given range of timestamps in descending timestamp order.
|
Iterable<HistoricalPropertyValue> |
ElementBase.getHistoricalPropertyValues(String key,
String name,
Visibility visibility,
Long startTime,
Long endTime,
Authorizations authorizations) |
Vertex |
Edge.getOtherVertex(String myVertexId,
Authorizations authorizations)
Given a vertexId that represents one side of a relationship, get me the vertex of the other side.
|
Vertex |
Edge.getOtherVertex(String myVertexId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Given a vertexId that represents one side of a relationship, get me the vertex of the other side.
|
Vertex |
Edge.getVertex(Direction direction,
Authorizations authorizations)
Get the attach vertex on either side of the edge.
|
Vertex |
Edge.getVertex(Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Get the attach vertex on either side of the edge.
|
Vertex |
GraphBase.getVertex(String vertexId,
Authorizations authorizations) |
Vertex |
Graph.getVertex(String vertexId,
Authorizations authorizations)
Get a vertex from the graph.
|
Vertex |
GraphBase.getVertex(String vertexId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Vertex |
Graph.getVertex(String vertexId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Get a vertex from the graph.
|
Vertex |
GraphBase.getVertex(String vertexId,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Vertex |
Graph.getVertex(String vertexId,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Get a vertex from the graph.
|
long |
GraphBase.getVertexCount(Authorizations authorizations) |
long |
Graph.getVertexCount(Authorizations authorizations)
Gets a count of the number of vertices in the system.
|
Iterable<String> |
Vertex.getVertexIds(Direction direction,
Authorizations authorizations)
Gets vertex ids of connected vertices.
|
Iterable<String> |
Vertex.getVertexIds(Direction direction,
String[] labels,
Authorizations authorizations)
Gets vertex ids of connected vertices.
|
Iterable<String> |
Vertex.getVertexIds(Direction direction,
String label,
Authorizations authorizations)
Gets vertex ids of connected vertices.
|
Map<Object,Long> |
GraphBaseWithSearchIndex.getVertexPropertyCountByValue(String propertyName,
Authorizations authorizations) |
Map<Object,Long> |
GraphBase.getVertexPropertyCountByValue(String propertyName,
Authorizations authorizations) |
Map<Object,Long> |
Graph.getVertexPropertyCountByValue(String propertyName,
Authorizations authorizations)
Gets the number of times a property with a given value occurs on vertices
|
Iterable<Vertex> |
GraphBase.getVertices(Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Authorizations authorizations)
Gets all vertices on the graph.
|
EdgeVertices |
Edge.getVertices(Authorizations authorizations)
Gets both in and out vertices of this edge.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
String[] labels,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex that have any of the given labels.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
String[] labels,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex that have any of the given labels.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
String label,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex that have the given label.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
String label,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex that have the given label.
|
Iterable<Vertex> |
GraphBase.getVertices(EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all vertices on the graph.
|
EdgeVertices |
Edge.getVertices(EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets both in and out vertices of this edge.
|
abstract Iterable<Vertex> |
GraphBaseWithSearchIndex.getVertices(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
abstract Iterable<Vertex> |
GraphBase.getVertices(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all vertices on the graph.
|
Iterable<Vertex> |
GraphBase.getVertices(Iterable<String> ids,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Iterable<String> ids,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
Iterable<Vertex> |
GraphBase.getVertices(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
Iterable<Vertex> |
GraphBase.getVertices(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
List<Vertex> |
GraphBase.getVerticesInOrder(Iterable<String> ids,
Authorizations authorizations) |
List<Vertex> |
Graph.getVerticesInOrder(Iterable<String> ids,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
List<Vertex> |
GraphBase.getVerticesInOrder(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
List<Vertex> |
Graph.getVerticesInOrder(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
Iterable<Vertex> |
GraphBase.getVerticesInRange(Range idRange,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesInRange(Range idRange,
Authorizations authorizations)
Gets vertices from the graph in the given range.
|
Iterable<Vertex> |
GraphBase.getVerticesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets vertices from the graph in the given range.
|
Iterable<Vertex> |
GraphBase.getVerticesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets vertices from the graph in the given range.
|
Iterable<Vertex> |
GraphBase.getVerticesWithPrefix(String vertexIdPrefix,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesWithPrefix(String vertexIdPrefix,
Authorizations authorizations)
Gets vertices from the graph given the prefix.
|
Iterable<Vertex> |
GraphBase.getVerticesWithPrefix(String vertexIdPrefix,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesWithPrefix(String vertexIdPrefix,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets vertices from the graph given the prefix.
|
Iterable<Vertex> |
GraphBase.getVerticesWithPrefix(String vertexIdPrefix,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesWithPrefix(String vertexIdPrefix,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets vertices from the graph given the prefix.
|
boolean |
Element.isHidden(Authorizations authorizations)
Given the supplied authorizations is this element hidden?
|
boolean |
ElementBase.isHidden(Authorizations authorizations) |
abstract boolean |
Property.isHidden(Authorizations authorizations) |
abstract boolean |
GraphBaseWithSearchIndex.isVisibilityValid(Visibility visibility,
Authorizations authorizations) |
abstract boolean |
GraphBase.isVisibilityValid(Visibility visibility,
Authorizations authorizations) |
boolean |
Graph.isVisibilityValid(Visibility visibility,
Authorizations authorizations)
Given an authorization is the visibility object valid.
|
abstract void |
GraphBaseWithSearchIndex.markEdgeHidden(Edge edge,
Visibility visibility,
Authorizations authorizations) |
abstract void |
GraphBase.markEdgeHidden(Edge edge,
Visibility visibility,
Authorizations authorizations) |
void |
Graph.markEdgeHidden(Edge edge,
Visibility visibility,
Authorizations authorizations)
Marks an edge as hidden for a given visibility.
|
abstract void |
GraphBaseWithSearchIndex.markEdgeVisible(Edge edge,
Visibility visibility,
Authorizations authorizations) |
abstract void |
GraphBase.markEdgeVisible(Edge edge,
Visibility visibility,
Authorizations authorizations) |
void |
Graph.markEdgeVisible(Edge edge,
Visibility visibility,
Authorizations authorizations)
Marks an edge as visible for a given visibility, effectively undoing markEdgeHidden.
|
void |
Element.markPropertyHidden(Property property,
Long timestamp,
Visibility visibility,
Authorizations authorizations)
Marks a property as hidden for a given visibility.
|
abstract void |
ElementBase.markPropertyHidden(Property property,
Long timestamp,
Visibility visibility,
Authorizations authorizations) |
void |
Element.markPropertyHidden(Property property,
Visibility visibility,
Authorizations authorizations)
Marks a property as hidden for a given visibility.
|
void |
ElementBase.markPropertyHidden(Property property,
Visibility visibility,
Authorizations authorizations) |
void |
Element.markPropertyHidden(String key,
String name,
Visibility propertyVisibility,
Long timestamp,
Visibility visibility,
Authorizations authorizations)
Marks a property as hidden for a given visibility.
|
void |
ElementBase.markPropertyHidden(String key,
String name,
Visibility propertyVisibility,
Long timestamp,
Visibility visibility,
Authorizations authorizations) |
void |
Element.markPropertyHidden(String key,
String name,
Visibility propertyVisibility,
Visibility visibility,
Authorizations authorizations)
Marks a property as hidden for a given visibility.
|
void |
ElementBase.markPropertyHidden(String key,
String name,
Visibility propertyVisibility,
Visibility visibility,
Authorizations authorizations) |
void |
Element.markPropertyVisible(Property property,
Long timestamp,
Visibility visibility,
Authorizations authorizations)
Marks a property as visible for a given visibility, effectively undoing markPropertyHidden.
|
abstract void |
ElementBase.markPropertyVisible(Property property,
Long timestamp,
Visibility visibility,
Authorizations authorizations) |
void |
Element.markPropertyVisible(Property property,
Visibility visibility,
Authorizations authorizations)
Marks a property as visible for a given visibility, effectively undoing markPropertyHidden.
|
void |
ElementBase.markPropertyVisible(Property property,
Visibility visibility,
Authorizations authorizations) |
void |
Element.markPropertyVisible(String key,
String name,
Visibility propertyVisibility,
Long timestamp,
Visibility visibility,
Authorizations authorizations)
Marks a property as visible for a given visibility, effectively undoing markPropertyHidden.
|
void |
ElementBase.markPropertyVisible(String key,
String name,
Visibility propertyVisibility,
Long timestamp,
Visibility visibility,
Authorizations authorizations) |
void |
Element.markPropertyVisible(String key,
String name,
Visibility propertyVisibility,
Visibility visibility,
Authorizations authorizations)
Marks a property as visible for a given visibility, effectively undoing markPropertyHidden.
|
void |
ElementBase.markPropertyVisible(String key,
String name,
Visibility propertyVisibility,
Visibility visibility,
Authorizations authorizations) |
abstract void |
GraphBaseWithSearchIndex.markVertexHidden(Vertex vertex,
Visibility visibility,
Authorizations authorizations) |
abstract void |
GraphBase.markVertexHidden(Vertex vertex,
Visibility visibility,
Authorizations authorizations) |
void |
Graph.markVertexHidden(Vertex vertex,
Visibility visibility,
Authorizations authorizations)
Marks a vertex as hidden for a given visibility.
|
abstract void |
GraphBaseWithSearchIndex.markVertexVisible(Vertex vertex,
Visibility visibility,
Authorizations authorizations) |
abstract void |
GraphBase.markVertexVisible(Vertex vertex,
Visibility visibility,
Authorizations authorizations) |
void |
Graph.markVertexVisible(Vertex vertex,
Visibility visibility,
Authorizations authorizations)
Marks a vertex as visible for a given visibility, effectively undoing markVertexHidden.
|
GraphQuery |
GraphBaseWithSearchIndex.query(Authorizations authorizations) |
VertexQuery |
Vertex.query(Authorizations authorizations)
Creates a query to query the edges and vertices attached to this vertex.
|
abstract GraphQuery |
GraphBase.query(Authorizations authorizations) |
GraphQuery |
Graph.query(Authorizations authorizations)
Creates a query builder object used to query the graph.
|
MultiVertexQuery |
GraphBaseWithSearchIndex.query(String[] vertexIds,
Authorizations authorizations) |
abstract MultiVertexQuery |
GraphBase.query(String[] vertexIds,
Authorizations authorizations) |
MultiVertexQuery |
Graph.query(String[] vertexIds,
Authorizations authorizations)
Creates a query builder object used to query a list of vertices.
|
MultiVertexQuery |
GraphBaseWithSearchIndex.query(String[] vertexIds,
String queryString,
Authorizations authorizations) |
abstract MultiVertexQuery |
GraphBase.query(String[] vertexIds,
String queryString,
Authorizations authorizations) |
MultiVertexQuery |
Graph.query(String[] vertexIds,
String queryString,
Authorizations authorizations)
Creates a query builder object used to query a list of vertices.
|
GraphQuery |
GraphBaseWithSearchIndex.query(String queryString,
Authorizations authorizations) |
VertexQuery |
Vertex.query(String queryString,
Authorizations authorizations)
Creates a query to query the edges and vertices attached to this vertex.
|
abstract GraphQuery |
GraphBase.query(String queryString,
Authorizations authorizations) |
GraphQuery |
Graph.query(String queryString,
Authorizations authorizations)
Creates a query builder object used to query the graph.
|
SimilarToGraphQuery |
GraphBaseWithSearchIndex.querySimilarTo(String[] fields,
String text,
Authorizations authorizations) |
SimilarToGraphQuery |
GraphBase.querySimilarTo(String[] fields,
String text,
Authorizations authorizations) |
SimilarToGraphQuery |
Graph.querySimilarTo(String[] fields,
String text,
Authorizations authorizations)
Creates a query builder object that finds all vertices similar to the given text for the specified fields.
|
void |
GraphBaseWithSearchIndex.reindex(Authorizations authorizations) |
abstract void |
GraphBase.reindex(Authorizations authorizations) |
void |
Graph.reindex(Authorizations authorizations)
Reindex all vertices and edges.
|
protected void |
GraphBaseWithSearchIndex.reindexVertices(Authorizations authorizations) |
abstract T |
ElementBuilder.save(Authorizations authorizations)
saves the element to the graph.
|
abstract Edge |
EdgeBuilder.save(Authorizations authorizations) |
abstract Vertex |
VertexBuilder.save(Authorizations authorizations)
Save the vertex along with any properties that were set to the graph.
|
abstract Edge |
EdgeBuilderBase.save(Authorizations authorizations)
Save the edge along with any properties that were set to the graph.
|
Iterable<Element> |
GraphBaseWithSearchIndex.saveElementMutations(Iterable<ElementMutation> mutations,
Authorizations authorizations) |
Iterable<Element> |
GraphBase.saveElementMutations(Iterable<ElementMutation> mutations,
Authorizations authorizations) |
Iterable<Element> |
Graph.saveElementMutations(Iterable<ElementMutation> mutations,
Authorizations authorizations)
Saves multiple mutations with a single call.
|
void |
Element.setProperty(String name,
Object value,
Metadata metadata,
Visibility visibility,
Authorizations authorizations)
Sets or updates a property value.
|
void |
ElementBase.setProperty(String name,
Object value,
Metadata metadata,
Visibility visibility,
Authorizations authorizations) |
void |
Element.setProperty(String name,
Object value,
Visibility visibility,
Authorizations authorizations)
Sets or updates a property value.
|
void |
ElementBase.setProperty(String name,
Object value,
Visibility visibility,
Authorizations authorizations) |
void |
GraphBase.softDeleteEdge(Edge edge,
Authorizations authorizations) |
void |
Graph.softDeleteEdge(Edge edge,
Authorizations authorizations)
Soft deletes an edge from the graph.
|
abstract void |
GraphBaseWithSearchIndex.softDeleteEdge(Edge edge,
Long timestamp,
Authorizations authorizations) |
abstract void |
GraphBase.softDeleteEdge(Edge edge,
Long timestamp,
Authorizations authorizations) |
void |
Graph.softDeleteEdge(Edge edge,
Long timestamp,
Authorizations authorizations)
Soft deletes an edge from the graph.
|
void |
GraphBase.softDeleteEdge(String edgeId,
Authorizations authorizations) |
void |
Graph.softDeleteEdge(String edgeId,
Authorizations authorizations)
Soft deletes an edge from the graph.
|
void |
GraphBase.softDeleteEdge(String edgeId,
Long timestamp,
Authorizations authorizations) |
void |
Graph.softDeleteEdge(String edgeId,
Long timestamp,
Authorizations authorizations)
Soft deletes an edge from the graph.
|
void |
Element.softDeleteProperties(String name,
Authorizations authorizations)
Soft deletes all properties with the given name that you have access to.
|
abstract void |
ElementBase.softDeleteProperties(String name,
Authorizations authorizations) |
void |
Element.softDeleteProperty(String key,
String name,
Authorizations authorizations)
Soft deletes a property given it's key and name from the element.
|
abstract void |
ElementBase.softDeleteProperty(String key,
String name,
Authorizations authorizations) |
void |
Element.softDeleteProperty(String key,
String name,
Visibility visibility,
Authorizations authorizations)
Soft deletes a property given it's key and name from the element for a given visibility.
|
abstract void |
ElementBase.softDeleteProperty(String key,
String name,
Visibility visibility,
Authorizations authorizations) |
void |
GraphBase.softDeleteVertex(String vertexId,
Authorizations authorizations) |
void |
Graph.softDeleteVertex(String vertexId,
Authorizations authorizations)
Soft deletes a vertex from the graph.
|
void |
GraphBase.softDeleteVertex(String vertexId,
Long timestamp,
Authorizations authorizations) |
void |
Graph.softDeleteVertex(String vertexId,
Long timestamp,
Authorizations authorizations)
Soft deletes a vertex from the graph.
|
void |
GraphBase.softDeleteVertex(Vertex vertex,
Authorizations authorizations) |
void |
Graph.softDeleteVertex(Vertex vertex,
Authorizations authorizations)
Soft deletes a vertex from the graph.
|
abstract void |
GraphBaseWithSearchIndex.softDeleteVertex(Vertex vertex,
Long timestamp,
Authorizations authorizations) |
abstract void |
GraphBase.softDeleteVertex(Vertex vertex,
Long timestamp,
Authorizations authorizations) |
void |
Graph.softDeleteVertex(Vertex vertex,
Long timestamp,
Authorizations authorizations)
Soft deletes a vertex from the graph.
|
| Constructor and Description |
|---|
ElementBase(Graph graph,
String id,
Visibility visibility,
Iterable<Property> properties,
Iterable<PropertyDeleteMutation> propertyDeleteMutations,
Iterable<PropertySoftDeleteMutation> propertySoftDeleteMutations,
Iterable<Visibility> hiddenVisibilities,
long timestamp,
Authorizations authorizations) |
SecurityVertexiumException(String message,
Authorizations authorizations) |
SecurityVertexiumException(String message,
Authorizations authorizations,
Throwable cause) |
| Modifier and Type | Method and Description |
|---|---|
T |
ElementMutation.save(Authorizations authorizations)
saves the properties to the graph.
|
abstract T |
ExistingElementMutationImpl.save(Authorizations authorizations) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutablePropertyImpl.isHidden(Authorizations authorizations) |
| Modifier and Type | Method and Description |
|---|---|
Authorizations |
QueryParameters.getAuthorizations() |
| Constructor and Description |
|---|
DefaultGraphQuery(Graph graph,
String queryString,
Authorizations authorizations) |
DefaultMultiVertexQuery(Graph graph,
String[] vertexIds,
String queryString,
Authorizations authorizations) |
DefaultVertexQuery(Graph graph,
Vertex sourceVertex,
String queryString,
Authorizations authorizations) |
GraphQueryBase(Graph graph,
String[] similarToFields,
String similarToText,
Authorizations authorizations) |
GraphQueryBase(Graph graph,
String queryString,
Authorizations authorizations) |
QueryBase(Graph graph,
String[] similarToFields,
String similarToText,
Authorizations authorizations) |
QueryBase(Graph graph,
String queryString,
Authorizations authorizations) |
QueryParameters(Authorizations authorizations) |
QueryStringQueryParameters(String queryString,
Authorizations authorizations) |
SimilarToQueryParameters(String[] fields,
Authorizations authorizations) |
SimilarToTextQueryParameters(String[] fields,
String text,
Authorizations authorizations) |
VertexQueryBase(Graph graph,
Vertex sourceVertex,
String queryString,
Authorizations authorizations) |
| Modifier and Type | Method and Description |
|---|---|
void |
SearchIndex.addElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
DefaultSearchIndex.addElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
SearchIndex.addElements(Graph graph,
Iterable<? extends Element> elements,
Authorizations authorizations) |
void |
DefaultSearchIndex.addElements(Graph graph,
Iterable<? extends Element> elements,
Authorizations authorizations) |
void |
SearchIndex.alterElementVisibility(Graph graph,
Element element,
Visibility oldVisibility,
Visibility newVisibility,
Authorizations authorizations) |
void |
DefaultSearchIndex.alterElementVisibility(Graph graph,
Element element,
Visibility oldVisibility,
Visibility newVisibility,
Authorizations authorizations) |
void |
SearchIndex.deleteElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
DefaultSearchIndex.deleteElement(Graph graph,
Element element,
Authorizations authorizations) |
default void |
SearchIndex.deleteProperties(Graph graph,
Element element,
Collection<PropertyDescriptor> propertyList,
Authorizations authorizations)
Default delete property simply calls deleteProperty in a loop.
|
void |
SearchIndex.deleteProperty(Graph graph,
Element element,
PropertyDescriptor property,
Authorizations authorizations) |
void |
DefaultSearchIndex.deleteProperty(Graph graph,
Element element,
PropertyDescriptor property,
Authorizations authorizations) |
Map<Object,Long> |
SearchIndexWithVertexPropertyCountByValue.getVertexPropertyCountByValue(Graph graph,
String propertyName,
Authorizations authorizations) |
MultiVertexQuery |
SearchIndex.queryGraph(Graph graph,
String[] vertexIds,
String queryString,
Authorizations authorizations) |
MultiVertexQuery |
DefaultSearchIndex.queryGraph(Graph graph,
String[] vertexIds,
String queryString,
Authorizations authorizations) |
GraphQuery |
SearchIndex.queryGraph(Graph graph,
String queryString,
Authorizations authorizations) |
GraphQuery |
DefaultSearchIndex.queryGraph(Graph graph,
String queryString,
Authorizations authorizations) |
SimilarToGraphQuery |
SearchIndex.querySimilarTo(Graph graph,
String[] fields,
String text,
Authorizations authorizations) |
SimilarToGraphQuery |
DefaultSearchIndex.querySimilarTo(Graph graph,
String[] fields,
String text,
Authorizations authorizations) |
VertexQuery |
SearchIndex.queryVertex(Graph graph,
Vertex vertex,
String queryString,
Authorizations authorizations) |
VertexQuery |
DefaultSearchIndex.queryVertex(Graph graph,
Vertex vertex,
String queryString,
Authorizations authorizations) |
| Constructor and Description |
|---|
VerticesToEdgeIdsIterable(Iterable<? extends Vertex> vertices,
Authorizations authorizations) |
Copyright © 2014–2017. All rights reserved.