Just to know, is there an underlying restriction f...
# kvision
k
Just to know, is there an underlying restriction for this framework level rule?
r
There is an open issue with a bit of info. https://github.com/rjaros/kvision/issues/158
k
Cheers.. By the way, I worked around with a hack, by making the service return a List<MyObject> 🙂
r
you could easily return a wrapper data class as well:
Copy code
@Serializable
data class MyWrapper(val o: MyObject?)
👍 1