Gremlin Cheat Sheet in Groovy
Gremin traversal examples taken from the excellent DS330: DataStax Enterprise Graph course.
Creating Vertices and Vertex Properties
Add a Vertex
Vertex u = graph.addVertex("user");
u.property("userId","u2016");
u.property("age",36);