John Rellis
John Rellis

Reputation: 553

Is it possible to create a graph database using AQL in Arangodb?

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.

Upvotes: 3

Views: 408

Answers (1)

stj
stj

Reputation: 9107

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.

Upvotes: 4

Related Questions