ArangoDB 2.2.5 Release: Enhancements & Bug Fixes

This version is deprecated. Download the new version of ArangoDB A maintenance release for ArangoDB 2.2 is available from the usual channels. v2.2.5 (2014-10-09) ——————- * fixed issue #961: allow non-JSON values in undocument request bodies * fixed issue 1028: libicu is now statically linked * fixed cached lookups of collections on the server, which…

Read More...

ArangoDB 2.2.4 Release: Enhancements & Bug Fixes

This version is deprecated. Download the new version of ArangoDB A maintenance release for ArangoDB 2.2 is available from the usual channels. v2.2.4 (2014-10-01) ——————- * fixed accessing `_from` and `_to` attributes in `collection.byExample` and   `collection.firstExample`   These internal attributes were not handled properly in the mentioned functions, so   searching for them did…

Read More...

ArangoDB 2.2.3 Release: Enhancements & Bug Fixes

This version is deprecated. Download the new version of ArangoDB A maintenance release for ArangoDB 2.2 is available from the usual channels. v2.2.3 (2014-09-02) ——————- * added `around` for Foxx controller * added `type` option for HTTP API `GET /_api/document?collection=…` This allows controlling the type of results to be returned. By default, paths to documents…

Read More...

Lucas Michael at FrOSCon: ArangoDB Community Event

Like every year, the ArangoDB team visited the FrOSCon. FrOSCon is the yearly Free and Open Source conference in St. Augustin, a small city near Cologne where the ArangoDB headquarters are. This year two talks were given by us, one by Michael and one by me, Lucas. Michael gave a talk about “Multi-Model NoSQL Databases”…

Read More...

Documentation Review & Roadmap: ArangoDB Updates

We want to present you our growing documentation. A few weeks ago we published the new documentation with a completely new look and a far better structure than before. Since than we fixed some small issues and rewrote some of the sections. In addition you can fold the code examples for a better overview. Now…

Read More...

ArangoDB 2.2.2 Release: Enhancements & Bug Fixes

This version is deprecated. Download the new version of ArangoDB A maintenance release of ArangoDB 2.2 is available via the package manager or from our download page. v2.2.2 (2014-08-08) allow storing non-reserved attribute names starting with an underscore Previous versions of ArangoDB parsed away all attribute names that started with an underscore (e.g. `_test`, `_foo`,…

Read More...

ArangoDB 2.2.1 Release: Enhancements & Bug Fixes

This version is deprecated. Download the new version of ArangoDB A maintenance release for ArangoDB 2.2 is available. It will fix the performance problems encountered with the new graph module plus v2.2.1 (2014-07-24) fixed issue with –check-version: when creating a new database the check failed issue #947 Foxx applicationContext missing some properties added startup option…

Read More...

New feature: Multi Collection Graphs

This version is deprecated. Download the new version of ArangoDB With the 2.2 release we proudly announce that we now offer the feature of multi collection graphs. This allows you to group an arbitrary set of ArangoDB collections into one graph. In order to do this grouping you execute the following steps in arangosh or…

Read More...

ArangoDB 2.2.0 Released: Explore New Features & Enhancements

This version is deprecated. Download the new version of ArangoDB We are happy to announce the release of 2.2.0. All the open issue mentioned in the beta release are now fixed. Features and Improvements The following list shows in detail which features have been added or improved in ArangoDB 2.2. ArangoDB 2.2 also contains several…

Read More...

Modifying AQL

ArangoDB comes with a powerful query language, called AQL. It combines all the different aspects in any easy-to-use query language. You can use joins as in SQL or graph queries as in Cypher. However, up to now it only supported read-queries. FOR u IN users FOR c IN cities FILTER u.zip == c.zip RETURN {…

Read More...