neo4j-rest-client icon indicating copy to clipboard operation
neo4j-rest-client copied to clipboard

Object-oriented Python library to interact with Neo4j standalone REST server

Results 24 neo4j-rest-client issues
Sort by recently updated
recently updated
newest added

So far, the only way to assign properties to nodes or relationships is by using the `[]` syntax ``` python n["prop"] = "old value" ``` But could be also interesting...

Improvement

Currently it does not support lists as index keys and it fails. Example: ``` source = [1,2,3,4,5] uid = gdb.nodes.create() index["user_id"][source] = uid for i in source: index["hosts"][i] = uid...

Feature

I didn't know if this is an issue or if I'm being dumb for not finding it, but: I'm trying to use neo4j's built-in graph algos like shortest path without...

Improvement

Node has properties attribute. We can access the attributes using it, but can't set. It would be better if we can set like this: n.properties['name'] = 'Neo'

Improvement