These functions implement the HTTP API for views.
See the HTTP API documentation for details.
ArangoView.exists() : boolean
Checks whether the view exists
Examples
ArangoDB arango = new ArangoDB.Builder().build();
ArangoDatabase db = arango.db("myDB");
ArangoView view = db.view("potatos");
boolean exists = view.exists();
ArangoView.getInfo() : ViewEntity
Returns information about the view.
Examples
ArangoDB arango = new ArangoDB.Builder().build();
ArangoDatabase db = arango.db("myDB");
ArangoView view = db.view("potatos");
ViewEntity info = view.getInfo();