arangodb-tinkerpop-provider icon indicating copy to clipboard operation
arangodb-tinkerpop-provider copied to clipboard

An implementation of the Tinkerpop OLTP Provider for ArangoDB

Results 17 arangodb-tinkerpop-provider issues
Sort by recently updated
recently updated
newest added

This does not work with the latest version of TinkerPop, `3.6.2`, and should probably update to the latest ArangoDB version `3.10`. Also curious if this is still being maintained as...

A first snapshot release of ArangoDB Java Driver version 7.0 has been published, see https://github.com/arangodb/arangodb-java-driver/releases/tag/v7.0.0-SNAPSHOT-1. Please keep in mind that this is a snapshot release. It is suited for testing...

Hi, I like arangodb, but I'm in the need for a pattern match type query for a particular interface I'm designing. Cypher's query language seems like one way to get...

question

Bumps [gson](https://github.com/google/gson) from 2.8.5 to 2.8.9. Release notes Sourced from gson's releases. Gson 2.8.9 Make OSGi bundle's dependency on sun.misc optional (#1993). Deprecate Gson.excluder() exposing internal Excluder class (#1986). Prevent...

dependencies

Bumps logback-classic from 1.1.3 to 1.2.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-classic&package-manager=maven&previous-version=1.1.3&new-version=1.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Hello, if i add a Vertex like mentioned in the readme: `Vertex v2 = g.addV("software").property("name", "lop").property("lang", "java").next();` this properties are not visible inside the collection "graph_software", only inside the collection...

enhancement

Hello, I am running this query ``` g.V().has( "myField", P.within([ 10, 13, 14, 100, 110, 111, 131])) ``` Over a graph with `~30M` of nodes. The process terminates with an...

Query timeout is usually set for each query https://www.arangodb.com/docs/stable/http/aql-query-cursor-accessing-cursors.html#create-cursor In the java driver this can be specified with the [AqlQueryOptions ttl(Integer ttl)](http://arangodb.github.io/arangodb-java-driver/javadoc-6_7/com/arangodb/model/AqlQueryOptions.html#ttl-java.lang.Integer-) method. At this time, the arangodb java driver...

Currently ArangoDB cannot support more than 2048 node/edge labels (in total?) since all labels are mapped to collections. See: https://github.com/ArangoDB-Community/arangodb-tinkerpop-provider/issues/63 ## Some comments: 1 - A new feature would be...

enhancement
feature
help_wanted

The number of labels is a known limitation, so we can catch this particular exception and provide better information messages.

enhancement