I want to update the value of a property in all vertices of one label.
g.AddV('car').property('id','1').property('name','Benz')
g.AddV('car').property('id','2').property('name','BMW')
g.AddV('car').property('id','3').property('name','Audi')
g.AddV('car').property('id','4').property('name','Nissan')
Like that there are 1000s of vertices. I want to update the name
value to lowercase in all those vertices. It needs to run on Azure Cosmos Graph DB.