I have these user
vertices:
g.addV("user").property(single,"name", "bob")
g.addV("user").property(single,"name", "thomas")
g.addV("user").property(single,"name", "mike")
I'd like to return these sorted by the length of the name
property.
bob
mike
thomas
Is this possible with Gremlin on AWS Neptune without storing a separate nameLength
property to sort on?