python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Gremlin add edge if not exists
I have the following code to insert two vertices/nodes, and an edge. It insert edge when the edge is NOT already exists.
g.V(100).hasLabel("pickup").fold().coalesce(
unfold(),
addV(&...
user1187968
Votes: 0
Answers: 1
Group by multiple properties (Gremlin)
I have the following entity
Event (date, severity, other properties)
I want to write a gremlin query which groups the events by date and severity and returns the result in the following format:
[
{...

Roxy
Votes: 0
Answers: 1
Map gremlin projection results
Imagine an item can be tagged by connecting unique tag nodes to a post with the twist that tags come from different sources. The source is recorded on the connecting edge, and there may be only one ed...
Igor R
Votes: 0
Answers: 1
Error when constructing Gremlin traversal using Lambda function
I have a vertex that is set with properties startDate and endDate:
Date start = new Date();
Date end = Date.from(start.toInstant().plusSeconds(600));
g.V(8L).property("startDate", start).pro...
Hieu Nguyen
Votes: 0
Answers: 1