James Thornton

Results 53 comments of James Thornton

The online docs need to be updated. The `Document Property` is defined here: - https://github.com/espeed/bulbs/blob/master/bulbs/property.py#L456 And here's how it gets called when using the default JSON type system: - https://github.com/espeed/bulbs/blob/master/bulbs/json.py#L154...

Hi - What version of Neo4j Server are you running?

Hi - The Neo4j 2 Blueprints/Gremlin implementation was just merged a few days ago into Blueprints 2.5-SNAPSHOT, and there are still some issues to iron out. See https://groups.google.com/d/topic/gremlin-users/ICiWgw_wAJE/discussion If you're...

@FrostyX Are you using the Gremlin Plugin from GitHub master: https://github.com/neo4j-contrib/gremlin-plugin ?

Hi All - I've been slammed so I haven't had time to fix this, but if anyone wants to, it should just be a matter of updating the neo4jserver/gremlin.groovy to...

Cursory Key Index support was added to Bulbs Titan a few months ago. See... - https://github.com/espeed/bulbs/blob/master/bulbs/titan/index.py#L274 - https://gist.github.com/espeed/3938820 Prior to this year, all of the Blueprints/Neo4 Java autoindex implementations used...

@mariomcginley make sure you create the Titan indices before you add data. You can create a basic KeyIndex through Rexster (Bulbs provides an interface for that https://gist.github.com/espeed/3938820). For custom index...

Thanks. Docs are getting a major overhaul for Bulbs 0.4.

It sounds like SpaceCurve is using a similar approach: http://www.jandrewrogers.com/2015/10/08/spacecurve/

His example... ``` python n = g.entity.get_or_create("list", ['Team', 'Blue'], list = ['Team', 'Blue']) ``` ...is executing this Gremlin script with the following params... ``` data = ['list': ['Team', 'Blue']] index_name...