How to get binary data back?

There’s a binary type (BytesVal) in ObjectValue of NQuad, so I decided to use it to keep slice of strings in a special binary form as [uleb128(len(item)), item...]*

And this turned to be not working at all. I cannot retrieve an info even with Go, as json.Decoder raise an error about invalid token.

This binary type was supported at some point but is no longer supported. It’s still mentioned in the code for backwards compatibility reasons. If you want to add binary data, use something like a 64-encoding string.