Github user FlorianHockmann commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/710#discussion_r138116451
--- Diff: gremlin-dotnet/src/Gremlin.Net/Driver/Messages/ResponseResult.cs
---
@@ -23,13 +23,14 @@
using System.Collections.Generic;
using Newtonsoft.Json;
+using Newtonsoft.Json.Linq;
namespace Gremlin.Net.Driver.Messages
{
internal class ResponseResult<T>
{
[JsonProperty(PropertyName = "data")]
- public List<T> Data { get; set; }
+ public JToken Data { get; set; }
--- End diff --
You can completely remove the type parameter `T` from the class when you
change the type here to `JToken`.
---