Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Filter by
Sorted by
Tagged with
4 votes
1 answer
122 views

I've been working with sack() step in gremlin. I'm trying to perform some operation on sack when two traversers merge. But for some reason the merge doesn't seem to work as expected. To describe my ...
Naveen Raj's user avatar
0 votes
0 answers
194 views

I have a multi-node Cassandra cluster version 4.1.3 with 3 nodes. I have changed the following properties in their cassandra.yaml file. cluster_name: 'cassandra_cluster' listen_address: <node_IP>...
Naveen Raj's user avatar
1 vote
2 answers
159 views

I have a JanusGraph with vertices containing property key "ID" and edges labelled as "ML_EDGE", containing property key "STRENGTH". I have to start from a vertex and ...
Naveen Raj's user avatar
1 vote
1 answer
341 views

This is an existing project that works properly with Apache Gremlin 3.6.2 but fails to pass unit tests after upgrading to any newer version of Gremlin - 3.6.3 or 3.6.4: [2023-06-13T11:34:57,445][...
Rostislav Krasny's user avatar
0 votes
1 answer
342 views

Problem Why am I unable-to-connect to JanusGraph-Server on localhost:8182? Using Java-17, TinkerPop3 Gremlin, and Janusgraph:latest. Reproduction Steps Download-and-Install Docker (Windows) ...
Zach's user avatar
  • 765
0 votes
1 answer
59 views

Problem How-To-Fix Log4j2 Warnings When Using Tinkerpop-3-Gremlin (Language)-GraphTraveralSource? Tried src/main/java/main.java import org.apache.logging.log4j.LogManager; import org.apache.logging....
Zach's user avatar
  • 765
0 votes
1 answer
111 views

Due to an application design fault, I need to add vertex_id as the property of the vertex. How to do that in Gremlin Query?
Thirumal's user avatar
  • 9,966
0 votes
1 answer
435 views

I'm trying to write a Java wrapper that will help me upsert (or even just insert) vertices in a Gremlin server. I realize that different tools may support other methods, e.g. AWS Neptune (which is my ...
Fabrice Gabolde's user avatar
0 votes
1 answer
329 views

Cardinality "set" property in apache tinkerpop gremlin is ordered or unordered? List is not supported in AWS Neptune, but I need to maintain insertion order (or) save & retrieve the ...
Thirumal's user avatar
  • 9,966
0 votes
1 answer
244 views

g.V().hasLabel('employee').fold().as("emp", "count") .select("emp", "count") .by(range(local, 0, 2).elementMap()) .by(count(local)); The above query is working ...
Thirumal's user avatar
  • 9,966
1 vote
1 answer
563 views

How to find the cardinality of property in apache tinkerpop Gremlin? Is there any method to find the given property cardinality is SET or SINGLE?
Thirumal's user avatar
  • 9,966
0 votes
1 answer
71 views

Autowired is not working in CustomMethodSecurityExpressionRoot always returning NULL. here is the custom method security. public class CustomMethodSecurityExpressionRoot extends SecurityExpressionRoot ...
Thirumal's user avatar
  • 9,966
0 votes
1 answer
334 views

How to map gremlin query output Map<Object, Object> to java Pojo class? Gremlin returns vertex properties in Object, how to convert/map it to POJO Class? Do we need to write a separate mapper ...
Thirumal's user avatar
  • 9,966
1 vote
1 answer
96 views

The application can be accessed from a different timezone, so I am trying to store date time using class java.time.OffsetDateTime. startTime: "1996-12-19T16:39:57-08:00", endTime: "1996-...
Thirumal's user avatar
  • 9,966
0 votes
1 answer
107 views

I am using @GremlinDsl so my traversal from g.V().hasLabel('NEW'), so I am using coalesce to add new vertices. It works well when there is any vertex with the given LABEL in the database, otherwise, ...
Thirumal's user avatar
  • 9,966
0 votes
1 answer
107 views

Can we use apache Gremlin Domain Specific Language (DSL) for mutations (CREATE, UPDATE & DELETE)? Gremlin Java DSL @GremlinDsl(traversalSource = "com.sample.dsl.EmpTraversalSourceDsl") ...
Thirumal's user avatar
  • 9,966