We are facing an issue with the scenario below.
We have a requirement where we need to store
byte[]in a graph node. We do the same usingnode.setProperty("name", byte[]);. The issue is when we try to retrieve thisbyte[]usingnode.getProperty("name").The above
getProperty(..)call works fine when we use theEmbeddedGraphDatabaseclass. As expected, in this case, abyte[]is returned. But, if we use aRestGraphDatabaseclass instance, aString(instead ofbyte[]) gets returned and is not equivalent to what we stored.
Note: the variable node in the above context could either be an instance of Node or RestNode.
Help us in this regard. Thanks