Hi Everyone, I want to execute sub-query using Li...
# android
d
Hi Everyone, I want to execute sub-query using LiveData observer mechanism. Is it possible? How? Thanks for help, in advance!
s
You can try
Transformations
perhaps? or you can use `Flow`s and use
asLiveData
to convert them to
LiveData
. https://developer.android.com/reference/androidx/lifecycle/Transformations
☝️ 1