How to create multiple nodes in a single transaction using neo4jClient.The Current code works fine but is a bit slower
foreach (UserInfo _ui in users)
{
client.Cypher.Create("(n:User{param})")
.WithParam("param", _ui).ExecuteWithoutResults();
}