3
votes

It seems the options to create a graph within Arangodb are:

  1. The Web Interface
  2. Arangosh using the general-graph module
  3. The provided drivers using the object based API
  4. The HTTP API

Is it possible to create the necessary components to build a graph using AQL???

For background, I am trying to assess options for bootstrapping graphs in different environments and potentially performing migrations in production environments.

1

1 Answers

4
votes

No, at the moment AQL is only a DML (data manipulation language), but no DDL (data definition language). To create a graph, please use one of the other methods you listed.