Skip to content
Advertisement

Gremlin’s valueMap() returns an empty object with JS and Neptune

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

I tried a million things now, but I think it’s supposed to work with:

JavaScript

or

JavaScript

But both of them returns

JavaScript

Which I don’t understand, because if I do this:

JavaScript

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

I’ve also opted for local instead of valueMap() because the last one will return the values as arrays instead of the actual value.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement