-
Given...
`conf/remote-subgraphs.yaml`
```
hosts:
- janusgraph
port: 8182
serializer:
className: org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV3d0
config:
ioRegistr…
-
Hi;
When I try this library with the GREMLIN_TINKERGRAPH_VERTEX_ID_MANAGER configuration via conf.setProperty(GREMLIN_TINKERGRAPH_VERTEX_ID_MANAGER, TinkerGraph.DefaultIdManager.UUID.name()); it …
-
Hi,
I tried to reinstall exakat on my computer and on the following steps :
```
curl -o exakat.phar https://www.exakat.io/index.php?file=latest
curl -o apache-tinkerpop-gremlin-server-3.4.3-bi…
-
when running this docker file I cannot query Vertex:
version: '3.4'
services:
workflowenginedb:
image: docker.io/janusgraph/janusgraph:latest
container_name: workflow-engine-db
…
-
Since version 3.3.5 you can replace
```
graph = TinkerGraph.open()
g = graph.traversal()
```
with
```
g = traversal().withGraph(TinkerGraph.open())
```
-
The performance of our basic tinkerpop implementation is very poor. We need to make use TraversalStrategies to push down filtering to Gaffer/Accumulo.
Notes from @okram:
```
I would recommend bindin…
-
I noticed this in the documentation.
```
graph.search("hell*", Match.ANY).count()
```
If a `P`-predicate is created for `Match.ANY` (and the others) then, when the `TraversalStrategy` that folds `ha…
okram updated
8 years ago
-
As well as adding some detailed coverage of using the GLV clients (covered by other issues) an introductory section is needed that introduces the various support available for users of different progr…
-
Hi
I compiled the plug-in on OSX, for Gremlin 3. I installed it on Neo4j 2.3.2.
I tried the following query, in order to test the Subgraph step.
subGraph = g.E().has("atom", "String").subgraph('Str…
-
Hi,
I have neo4j-community-3.5.5, scala 2.11.8 and Idea 2018.3.4 community version and would like to set up gremlin for me to access Neo4j database in Scala
I have this library dependency in bui…