Deprecated

Features listed in this section should no longer be used, because they areconsidered obsolete and may get removed in a future release. They are currentlykept for backward compatibility. There are usually better alternatives toreplace the old features with:

  • Simple Queries: Idiomatic interface in arangosh to perform trivial queries.They are superseded by AQL queries, which can alsobe run in arangosh. AQL is a language on its own and way more powerful thanSimple Queries could ever be. In fact, the (still supported) _Simple Queries_are translated internally to AQL, then the AQL query is optimized and runagainst the database in recent versions, because of better performance andreduced maintenance complexity.

  • Actions: Snippets of JavaScript code on the server-side for minimalcustom endpoints. Since the Foxx revamp in 3.0, it became really easy towrite Foxx Microservices, which allow you to definecustom endpoints even with complex business logic.

From v3.5.0 on, the system collections _routing and _modules are notcreated anymore when the _system database is first created (blank new datafolder). They are not actively removed, they remain on upgrade or backuprestoration from previous versions.

You can still find theActions documentationin 3.4 or older versions of the documentation.