How to keep objects in node

@armensanoyan

Maybe this is not good for your use-case,
but what about use the apoc.create.nodes ,

to create a Node with a label ("MyLabel" in this case), so that you can have every data you need in a specific label (possibly to be indexed and/or connect with other entities)?

CALL apoc.create.nodes(["MyLabel"], [{
  `name.with.dots`:'here is name, which can have  punctuation marks .',
  value: 'here will be text '
},
{
  name:'here is name, which can have  punctuation marks ',
  value: 'here will be text '
}]) yield node
return node 
1 Like