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
RelationIdentifieris a JanusGraph specific class (i.e. anEdgeidentifier) and therefore the TinkerPop drivers don't know how to process it. Either avoid JanusGraph specific classes by not returing theEdgeT.idinvalueMap()or consider using janusgraph-dotnet.