@@ -4369,6 +4369,7 @@ public <T> VertexCursor<T> executeVertexQuery(
4369
4369
/**
4370
4370
* Returns an EdgeCursor by a given vertex example and some options
4371
4371
*
4372
+ * @deprecated use AQL instead
4372
4373
* @param graphName
4373
4374
* The name of the graph.
4374
4375
* @param clazz
@@ -4381,6 +4382,7 @@ public <T> VertexCursor<T> executeVertexQuery(
4381
4382
* @return EdgeCursor<T>
4382
4383
* @throws ArangoException
4383
4384
*/
4385
+ @ Deprecated
4384
4386
@ SuppressWarnings ("unchecked" )
4385
4387
public <T > EdgeCursor <T > graphGetEdgeCursor (
4386
4388
final String graphName ,
@@ -4415,6 +4417,7 @@ public <T> EdgeCursor<T> graphGetEdgeCursor(
4415
4417
/**
4416
4418
* Returns a VertexCursor by a given vertex example and some options
4417
4419
*
4420
+ * @deprecated use AQL instead
4418
4421
* @param graphName
4419
4422
* The name of the graph.
4420
4423
* @param clazz
@@ -4427,6 +4430,7 @@ public <T> EdgeCursor<T> graphGetEdgeCursor(
4427
4430
* @return VertexCursor<T>
4428
4431
* @throws ArangoException
4429
4432
*/
4433
+ @ Deprecated
4430
4434
public <T > VertexCursor <T > graphGetVertexCursor (
4431
4435
final String graphName ,
4432
4436
final Class <T > clazz ,
@@ -4481,6 +4485,10 @@ public <T> EdgeCursor<T> graphGetEdgeCursorByExample(
4481
4485
return graphGetEdgeCursor (graphName , clazz , vertexExample , new GraphEdgesOptions (), null );
4482
4486
}
4483
4487
4488
+ /**
4489
+ * @deprecated use AQL instead
4490
+ */
4491
+ @ Deprecated
4484
4492
public <V , E > ShortestPathEntity <V , E > graphGetShortestPath (
4485
4493
final String graphName ,
4486
4494
final Object startVertexExample ,
0 commit comments