neo4j-contrib / gremlin-plugin

A Plugin for the Neo4j server add Tinkerpop-related functionality
Other
55 stars 23 forks source link

Added boolean support to serialization of maps #6

Closed ghost closed 11 years ago

ghost commented 11 years ago

Without checking val for Boolean they are treated like Strings. The result was {"key":"true"} instead of {"key":true}.

Example gremlin query (with vertex 1 having a boolean value): "x = [:]; x.putAll( g.v(1).map() ); x;"

peterneubauer commented 11 years ago

Thanks a lot @Perfect-Pixel ! Much appreciated.