I'm currently writing a GraphQL endpoint that'll be querying my Neo4j 4.0.0 Community instance.
I'd like to have a new uuid field of type ID! for nodes that existed before and thus do have values in _id but don't yet have nodeTypeNameId attribute.
How do I generate a unique ID for these new fields in bulk so they can become usable through GraphQL?
By the way, I'm usinig Apollo Server and neo4j-graphql-js for my implementation.