Is the insertion order guaranteed with this example code?
Promise.all
if for some reason the insertion order is important, then you need to call sequentially
gtx.addV("person").property("name", "jorge").iterate();
gtx.addV("person").property("name", "josh").iterate();
...Using mergeE to create an edge with an id that depends on a lookup
Is tx.close() necessary in Javascript?
https://tinkerpop.apache.org/docs/current/reference/#gremlin-javascript-transactions https://docs.aws.amazon.com/neptune/latest/userguide/access-graph-gremlin-transactions.html...
Using dedup with Neptune
dedup()
any more performant in that sort of query with Neptune's current implementation.As far as pagination goes, have you tried using Neptune's Query Results Cache instead of making multiple
range()
calls? That would significantly decrease latency for subsequent calls as you paginate across the resuls: https://docs.aws.amazon.com/neptune/latest/userguide/gremlin-results-cache.html...`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