I have a code like the one below. Since I switched TinkerGraph to JanusGraph it got an error:
Gremlin.Net System.InvalidOperationException: 'Deserializer for “janusgraph:RelationIdentifier” not found' exception
var result =
_g.V().BothE("name").OtherV().Path().By(__.ValueMap<object, object>(true)).ToList();
This is a common serializer error and likely related to an error on your client side. The
RelationIdentifier
is a JanusGraph specific class (i.e. anEdge
identifier) and therefore the TinkerPop drivers don't know how to process it. Either avoid JanusGraph specific classes by not returing theEdge
T.id
invalueMap()
or consider using janusgraph-dotnet.