Query custom type
#1812
-
Hello, I have the following type:
Trying to perform a simple query with this type but for some reason the argument I am passing into the query is blank, looks like the value encoder/decoder does not like the type (query param number two).
I saw that custom decoders must be implemented for custom types, is this the case too? #809 Thanks for help |
Beta Was this translation helpful? Give feedback.
Answered by
lzap
Nov 27, 2023
Replies: 1 comment
-
Ah got it, I had a |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
lzap
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ah got it, I had a
String()
function implemented incorrectly, so logger was converting it to empty string. It works as expected, no need to implement a custom type.