there are some use cases / patterns that are needed by many users and I think it is a good idea to support them directly in TinkerPop with such higher-order patterns. For me personally, I would really appreciate
getOrCreate steps for vertices and edges and also some
upsert step. Both are already described in
an old ticket and they are also frequently requested on this mailing list and on StackOverflow.
Another pattern that could be interesting for Gremlin is a
getSimilar step. Elasticsearch has for example a
More Like This Query. For a graph, this could be solved by traversing the neighborhood of the start vertex and trying to find vertices with the same label that have short paths to the start vertex and ideally those paths have only few branches (e.g., a path including a supernode doesn't mean that those vertices are similar). But this use case might already be too special / complicated. So I would start with easier patterns like the bidirectional search.