Skip to content

Releases: envis10n/darango

0.1.6

26 Mar 00:55
1a07ec5
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.1.5...0.1.6

0.1.5

24 Mar 23:24
Compare
Choose a tag to compare

Add some more methods for graph handling:

Add createGraph() method.
Add listGraphs() method.
Add method for obtaining vertex collections from a graph.

Full Changelog: 0.1.4...0.1.5

0.1.4 Hotfix

23 Mar 02:38
Compare
Choose a tag to compare

Hotfix for Graph method returns.

ArangoCursor by default only returns the type provided, and it makes more sense to return DocumentData for Graph traversals.

This provides the document _id, _key, and _rev fields to the type system.

Full Changelog: 0.1.3...0.1.4

0.1.3

23 Mar 02:32
Compare
Choose a tag to compare

Added basic Graph support.

This adds a Graph class with methods for traversal and shortestPath. These return an ArangoCursor which will complete the query.

These methods are just helpers that use a general AQL query behind the scenes.

Full Changelog: 0.1.2...0.1.3

0.1.2

21 Mar 19:17
Compare
Choose a tag to compare

Add Edge and EdgeCollection to mod.ts
Whoops.

Full Changelog: 0.1.1...0.1.2

0.1.1

21 Mar 19:14
Compare
Choose a tag to compare

Add basic Edge support.

Graph engine support will be added in an upcoming release.

Full Changelog: 0.1.0...0.1.1

0.1.0

12 Mar 03:23
Compare
Choose a tag to compare

Full Changelog: 0.0.4...0.1.0

Change arango query to use just the generic type.

28 May 19:20
Compare
Choose a tag to compare
  • Change arango query to use just the generic type.
  • Change collection query to directly use DocumentData
  • Add findOne method to collection.
    • findOne is basically an alias for (await find(filter))[0]

Fix for missing exports

26 May 04:41
Compare
Choose a tag to compare
  • Moved Arango to arango.ts
  • Change mod.ts to simply re-export.
  • Ensure certain types and interface definitions are exported.

First non pre-release.

26 May 02:03
Compare
Choose a tag to compare
  • Updated README.
  • Added JSDoc comments to make usage easier.
  • Fixed property visibility on some props.
  • Removed unused code / general cleanup.