Hey guys,
I want to use a custom transcoder to parse the N1QL results I get. (To directly have the JSON obj in my favourite lib).
By a quick look at the code, I see on N1qlQueryExecutor class that the JSON_OBJECT_TRANSCODER is hard coded as the transcoder for the query results.
Is there there any way of passing another transcoder ?
If not, are you guys plan to add this kind of behaviour ? (that would be fantastic! )
Hey, Thanks for the quick responses, @daschl, Indeed itβs the Java SDK.
And calling the toString method and re-building the JSON obj is exactly what iβm trying to avoid
@idanna are you only interested in used your own unmarshalling for the individual rows?
if so, maybe what we could do is provide a βbyteValue()β method on (Async) N1qlQueryRow that will output byte[] instead of JsonObject, and have βvalue()β build upon this to expose the bytes as JsonObject.