Closed OyvindSabo closed 4 years ago
Assuming a maximum line width of 30 characters, the following query
g.V().group().by{it.value('name')[1]}.by('name').next()
is currently formatted to
g.V(). group(). by{it.value('name')[1]}.by('name'). next()
but should be formatted to
g.V(). group(). by{it.value('name')[1]}. by('name'). next()
Assuming a maximum line width of 30 characters, the following query
is currently formatted to
but should be formatted to