`next(n)` with Gremlin JavaScript
next(n)
seems perfect, but it doesn't appear to be available for JavaScript as per the documentation.
Is there a reason for this limitation?...Traversal Inspection for properties used
Gremlin with AWS Neptune
TraversalInterruptionTest taking a very long time to complete
Running Tinkerpop test in Janusgraph repo
configure gremlin-server to use remote Neptune server?
Query optimisation
Without any additional context I would take a guess that most of the difference in time is being spent doing
has("account", "id", "my_account")
since the first version is doing that filter twice....Combine two queries to perform only one
union
step https://tinkerpop.apache.org/docs/current/reference/#union-step
something like
g.union(
V().hasLabel('Groups').range({start_index}, {end_index}).elementMap(), V().hasLabel('Groups').out().range({start_index}, {end_index}).elementMap()))
...compatibility with Apache Jena Fuseki
Is the first traversal pattern evaluated by Match well defined
.mergeV() with Javascript not working
Unable to deserialize results with Gremlin-go client + JanusGraph
localhost:8182
:
```yml...Fulltext-search-like features without ElasticSearch, OpenSearch, Solr and such?
legal_name
, some similar to SQL...Conditionally updating a variable with choose()
choose()
. you could simplify your syntax a fair bit i think by using sack()
:
```gremlin> g.withSack(0).V().
......1> project('id', 'name', 'requirement1', 'requirement2', 'requirement3', 'value').
......2> by('id').
......3> by('name')....Systems Analysis Report on Apache TinkerPop - Where to Start?
Lambda example in TypeScript
mergeE(): increment counter on match
mergeE()
in one single query? (e.g., counter += 1
)
Something similar to this:
```
g.mergeE([(T.label):'called', (from): person1, (to):person2])....gremlin> g.mergeE([(Direction.from):44,(Direction.to):8]).valueMap(true)
==>[id:5062,label:route,dist:549]
gremlin> g.mergeE([(Direction.from):44,(Direction.to):8]).valueMap(true)
==>[id:5062,label:route,dist:549]
Serialization Issue
conf/remote-graph-binary.yaml
I am able to get results. But when I am trying to use my java application I am getting, java.io.IOException: Serializer for custom type 'janusgraph.RelationIdentifier' not found
. Googling around I got that this is due to serialization issue. It looks to me that the gremlin-client and my java application has similar configs but gremlin-client is not having any serialization problem.
```
hosts: [localhost]
port: 8182...Design decision related to multiple heterogenous relational graphs
Stackoverflow when adding a larger list of property values using traverser.property()