java: package org.apache.tinkerpop.shaded.jackson.core does not exist
mvn clean install
with jdk11, I ran into the above error using the master branch. Any idea?Performance issue in large graphs
Concurrent queries to authentication required sever resulted in 401 error
Discrepancy between console server id conventions and Neptune
how to connect the amothic/neptune container to the volume?
graphLocation
and graphFormat
config options here: https://tinkerpop.apache.org/docs/current/reference/#tinkergraph-configuration
You may also want to use a mapped directory from your local machine to ensure data is not lost if the contianer is deleted: https://docs.docker.com/storage/volumes/...Docker yaml authentication settings (gremlinserver.authentication) question
Due to gremlin server expecting a map, but docker being unable to pass it to the server in the format that is expected.I think you simply have a slight misunderstanding of the YAML format here. YAML is basically a nested map of maps. Now, if your YAML looks like this: ...
Gremlin Injection Attacks?
ScriptEngine
in the server: https://tinkerpop.apache.org/docs/current/reference/#script-execution but it is not a perfect solution and really just a reference implementation that we have. Some commercial offerings in the...Returned vertex properties (JS client)
list
or set
gremlin> g.addV('test').property(list,'a','1').property(list,'a','2')
==>v[13]
gremlin> g.V(13).valueMap()
==>[a:[1,2]]
...Anyone using Tinkerpop docker as a local Cosmos replacement
Configuring Websockets connection to pass through a proxy server
python goblin vs spring-data-goblin for interactions with gremlin server
Is there any open source version of data visualizer for aws neptune?
Dynamic select within query not working.
has(String, Traversal)
in __.V().hasLabel('UsdValue').has('date', select('row').limit(local, 1).unfold())
but it doesn't work the way you expect. basically, the result of the traversal you give to has()
is not given as the value to the comparator. More generally, P
does not take a Traversal
making any such usage impossible. It is designed to work such that the value of "UsdValue" i...Adding multiple properties to a vertex using gremlin-go
Is it possible to walk 2 different graphs using custom TraversalStrategy in Gremlin?
TraversalStrategy
would help in any way i can imagine. Maybe the closest thing I can imagine would be to subgraph the two graphs with their references vertices and merge them to a single TinkerGraph in your application and then run additional queries on that directly. I'm not sure that suits a lot of use cases we hear about though in relation to this feature so that suggestion may not be helpful. cc/ @Dave Bechberg...SideEffect a variable, Use it later after BarrierStep?
mean()
step - if the mapped list was still a Gremlin traversal object that offered mean()
.
However, the mapped list is, by that time, a Groovy list and mean()
is no longer available....Memory issue on repeat
Which database should i use for my DJ set planning software?
How will i add unique values to the vertices or edge properties in Neptune
Not getting result in hasId() but id().is() works
g.V().hasId(48)
or same g.V(48)
should return Vertex with id == 48.
g.V().id().is(48)
can return 48
if Vertex with id == 48 present.
great resource to start learning about Gremlin is https://kelvinlawrence.net/book/Gremlin-Graph-Guide.html...