I am creating nodes using batch create method mentioned in the documentation: people = Person.create( {'name': 'Tim', 'age': 83}, {'name': 'Bob', 'age': 23}, {'name': 'Jill', 'age': 34}, ) Nodes gets created successfully but without labels
when I write cypher query MATCH (p:Person) return count(p) I get 0 records as label "Person" doesn't exist. Does anyone know how to add labels to neomodel Structured Nodes