Github user spmallette commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/858#discussion_r184047847
--- Diff:
gremlin-javascript/src/main/javascript/gremlin-javascript/lib/driver/driver-remote-connection.js
---
@@ -33,7 +33,7 @@ const responseStatusCode = {
noContent: 204,
partialContent: 206
};
-const defaultMimeType = 'application/vnd.gremlin-v2.0+json';
+const defaultMimeType = 'application/vnd.gremlin-v3.0+json';
--- End diff --
Is there a way to configure for GraphSON 2.0? Also, I assume that the tests
are running on GraphSON 3.0 now, but do they also run for GraphSON 2.0 still?
---