Article·arangodb.com
knowledge-graphmulti-modelgraphdocumentopen-sourcevector
ArangoDB
ArangoDB is a multi-model database supporting graphs, documents, and key-value storage. It features AQL for querying and ArangoSearch for complex knowledge retrieval. It is suitable for building knowledge-graph-backed AI applications.
beginner30 min7 steps
The play
- Install ArangoDBDownload and install ArangoDB from the official website or using your system's package manager. Follow the instructions specific to your operating system.
- Start the ArangoDB ServerStart the ArangoDB server using the command-line interface or the provided graphical user interface.
- Access the ArangoDB Web InterfaceOpen your web browser and navigate to http://localhost:8529 to access the ArangoDB web interface. Log in with the default credentials (root and the password you set during installation).
- Create a New DatabaseIn the web interface, click on 'Databases' and then 'Create Database'. Enter a name for your new database (e.g., 'my_database') and click 'Create'.
- Create a CollectionSelect your newly created database. Click on 'Collections' and then 'Create Collection'. Choose a name (e.g., 'my_collection') and select the type (e.g., 'Document'). Click 'Create'.
- Insert a DocumentGo to the AQL query editor and insert a document.
- Query the DocumentExecute a simple AQL query to retrieve the inserted document.
Starter code
{
"name": "John Doe",
"age": 30
}Source