Hi all, In TinkerPop 4 we are removing support for sessions, so Gremlin Console will not be able to work as before. Command `:remote` will be removed.
As a replacement for working with a remote server GraphTraversalSource can be constructed with same configuration files: g = traversal().with('conf/remote-graph.properties') Another more universal method is similar to what is used in Java GLV cluster = Cluster.build("localhost").port(8182).create() g = traversal().withRemote(DriverRemoteConnection.using(cluster, "g")) If there are any comments or suggestions, I would like to hear them. Regards, Valentyn