home shape

ArangoDB Weekly #24 | Alpha Release 2.6, diff documents with AQL

Last week we’ve released ArangoDB 2.6 alpha! We would be happy if you could test the new version and give us some feedback. For all the great developers who make drivers and tools for ArangoDB we made a list of important changes in the API. With ArangoDB 2.6 you also can generate your API documentation with Swagger 2. Stay tuned, follow @arangodb for more news and have fun with the new release.

ArangoDB Releases

The first alpha release of ArangoDB 2.6 is available for download. We have many new features like the following:

  • Added AQL Upsert statement to AQL
  • Added batch document removal and lookup commands
  • ArangoDB now provides a dedicated collection export API

For a list of all changes you can look at our changelog. This alpha-release is for testing purposes only, please try the new version and provide us feedback.

ArangoDB related (Drivers & more)

Articles and Presentations

Cookbook

Questions on Stack Overflow

Answered:

Events

Did you know?

Traversals: Starting from Scratch
ArangoDB provides the edges, inEdges, and outEdges methods for edge collections. These methods can be used to quickly determine if a vertex is connected to other vertices, and which.

For example, to determine which edges are linked to the world vertex, we can use inEdges:

db.e.inEdges('v/world').forEach(function(edge) {
  require("internal").print(edge._from, "->", edge.type, "->", edge._to);
  });

The result is a JavaScript array that we can iterate over and print the results:

v/continent-africa -> is-in -> v/world
v/continent-south-america -> is-in -> v/world
v/continent-asia -> is-in -> v/world
v/continent-australia -> is-in -> v/world
v/continent-europe -> is-in -> v/world
v/continent-north-america -> is-in -> v/world

Subscribe to our weekly newsletter

[mc4wp_form]

Frank Celler

Frank Celler

Frank is both entrepreneur and backend developer, developing mostly memory databases for two decades. He is the CTO and co-founder of ArangoDB. Try to challenge Frank asking him questions on C, C++ and MRuby. Besides Frank organizes Cologne’s NoSQL group & is an active member of NoSQL community.

Leave a Comment





Get the latest tutorials, blog posts and news: