node = db.node(name='testname')node.addLabel('User')
addLabelgetLabelshasLabelremoveLabel
But when I try to call addLabel I get this error:
----> 1 node.addLabel('User') /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/neo4j/_backend.py in decorator(*args, **kwargs) 181 if not jpype.isThreadAttachedToJVM(): 182 jpype.attachThreadToJVM() --> 183 return fn(*args, **kwargs) 184 return decorator 185RuntimeError: No matching overloads found. at src/native/common/jp_method.cpp:121
I can do what I need with cypher, but I find its a bit slower. If the fix is something simple and you can point me to it, I'll happily look into it.thanks,