I’m trying to get all the nodes and it’s properties with gremlin and js that has a specific label.
It should output something like:
JavaScript
x
14
14
1
[
2
{
3
p1:v1,
4
p2:v2,
5
px:vx
6
},
7
{
8
p1:v1,
9
p2:v2,
10
px:vx
11
}
12
]
13
14
I tried a million things now, but I think it’s supposed to work with:
JavaScript
1
2
1
g.V().hasLabel("myLabel").valueMap();
2
or
JavaScript
1
2
1
g.V().hasLabel("myLabel").map(p.valueMap()).toList();
2
But both of them returns
JavaScript
1
5
1
[
2
{},
3
{}
4
]
5
Which I don’t understand, because if I do this:
JavaScript
1
2
1
g.V().hasLabel("myLabel").map(p.values().fold()).toList();
2
I got a list like I want but only with the values.
Advertisement
Answer
Turns out that Gremlin returns a Map instead of an Object, so I needed to cast the response as an object before I was able to use it.
Here’s how I’m doing it:
JavaScript
1
3
1
const response = await g.V().hasLabel("myLabel").local(p.properties().group().by(p.key()).by(p.value())).toList();
2
const asObject = response.map(val=>Object.fromEntries(val));
3
I’ve also opted for local
instead of valueMap()
because the last one will return the values as arrays instead of the actual value.