I am creating a lot of nodes in neo4j using python's py2neo. I am using neo4j version 2 which has support for labels. I would like to add a label to the node I have created in batches. Is there a way to do that ?
a = batch.create(node(name='Alice'))
Now I would like to add the labels "Female", and "Human" to a.