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

Add support for lists as index keys

Open versae opened this issue 11 years ago • 0 comments

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

versae avatar Mar 26 '13 15:03 versae