Cryptic Neptune Gremlin Error Rate Creeping - What Would You Recommend?
kubehound
Help with visualizing in the graph-notebook
Gremlin browser code editor
Connecting to local gremlin server with websocket address
Clarification on Kerberos configuration for Gremlin Driver
Gremlin Driver and frequently changing servers
Cluster
object and updating the contact points. Neptune has a special client that wraps the TinkerPop driver to do just that: https://aws.amazon.com/blogs/database/load-balance-graph-queries-using-the-amazon-neptune-gremlin-client/ i've always thought it would be nice if...Global Search
GraphSON mapper
.drop() behavior confussion
drop()
. The terminal step actually executes the traversal...drop()
is not such a step. You would likely use iterate()
in this case as your terminal step. https://tinkerpop.apache.org/docs/current/reference/#terminal-stepsCan I name the result of an anonymous traversal without moving the traverser?
store
```
gremlin> g.V().hasLabel("person").
......1> has("name", "josh").
......2> where(__.out().has("name", "ripple").store('a'))....Can GraphBinary be used to save a graph to file?
GraphBinaryGraphWriter
implementations because GraphBinary was built for network serialization. I suppose it could be used that way, but no one has ever really made a request to do that.How to get cardinality of property?
VertexFeatures.getCardinality(String)
which, if implemented by the provider, will tell you a hint at the cardinality. https://github.com/apache/tinkerpop/blob/1e3c881d9f157167b53f431898e6d1ee40429cd0/gremlin-core/src/main/java/org/apache/t...inverted regex search
regex
is a P
which is a form of predicate and P
cannot take dynamic values. The only way you could do it is to use a lambda/closure as you already tried to do:
```
gremlin> import java.util.regex.Pattern
==>java.util.regex.Pattern
gremlin> g = TinkerGraph.open().traversal()...Debug message spam from tinkerpop server 3.7
DEBUG=False
to do the trick but this does not seem to be the case? It may be relevant that I am running this on windows, and therefore using the .bat and not the .sh. I feel like I am missing something obvious, but I am not sure what I should be looking at next?...Should by() Modulator Work For More Types?
gremlin> g.V().out().out().path().by("name")
==>[marko,josh,ripple]
==>[marko,josh,lop]
...InProcess GraphDB with Gremlin Support? (C# or NodeJS)
Easiest Way to Get List Cardinality Properties As a List?
valueMap()
as you did and group()
would be the the primary ways you'd end with a List
where the former is the most likely one for the average case where you might want to do like:
g.V().valueMap().by(toUpper(local))
g.V().valueMap().by(toUpper(local))
local
have to do:...filter lambda in remote console
g.V().hasLabel('person')
within() and case insensitive
TextP.regex
can be used, something like
g.V().has("name", TextP.regex("(?i)^(vadas|josh)$"))
...