gremgo icon indicating copy to clipboard operation
gremgo copied to clipboard

A fast, efficient, and easy-to-use Go client for the Apache TinkerPop graph database stack

Results 15 gremgo issues
Sort by recently updated
recently updated
newest added

I've looked through Gremgo and Gremlin docs and i dont see a reference to "rebindings" and what their purpose is. Closest i could find is aliases for Graph and TraversalSource...

expected result: resp including a vertice id but the real result: [SERVER SERIALIZATION ERROR] ``` // replace map[string]string{"x": "1234"} with this: map[string]string{"x": "'1234'"}, // but got // [] ```

Replace with https://github.com/gofrs/uuid since it's no longer maintained and has security vulnerability WS-2018-0594 + create a new release. https://github.com/satori/go.uuid/issues/84 A vulnerability was found in github.com/satori/go.uuid through version v1.2.0. The UUID...

Hi Team, I have changed the isConnected function from the connection.go file to IsConnected() I mean to say I have made the isConnected function as public to make sure whether...

for the query `g.V('user1').inE('follows').outV().valueMap().range(0, 100)` The amount of document returned is around 60.

Currently websocket message is limited to 8192 bytes: https://github.com/qasaur/gremgo/blob/f9215ffedfcbbd346d85f5b6293bd36beb0472f9/connection.go#L51-L52 this is definitely not enough for any serious management system and causes nasty errors on gremlin side: ``` gremlin_1 | [WARN]...

Hi Team, As we are using the gremgo for our application development the gremgo.Ws struct is having the method isConnected() which is not public method if you can make this...

I'm seeing a timing dependent hang when the gremlin server goes away for some reason. It looks like the response handler sits on a channel waiting for a response with...

The following results in the evaluation error: `g.addV("` + thing.AtClass + `").property(T.id, uuid)` The issue lies in `T.id` but I'm not sure how to set this value. thanks