Open greekZorba opened 2 years ago
It should work, maybe you can try to annotate the type instead. I'll look into it when i have a bit of time
Any chance you've taken a look at this @Wicpar? Seeing same behavior.
I'm not fully aware yet why, but the reason it's not working is that you can't get by with just adding the annotation. You need to explicitly annotate it as: @property:Description
, which will make the code pick it up properly. This wasn't an issue before as the only target set was property. This was changed where it's now applicable to both property and a value parameter.
Perhaps whoever is more aware of the inner workings of Kotlin reflection can shed some more light on why this is the case. I've yet to grasp it 100%.
EDIT: it is explained here https://kotlinlang.org/docs/annotations.html#annotation-use-site-targets
I am trying to use @Description to my schema model.
my version is 0.3-beta.2
But nothing happen to my schema model.
Am I using @Description annotation incorrectly? Or @Description is working improperly?
this is my code as shown below.
can I get any advice?