Is there a way to refetch a model and all its relationships?
I have a User
model which has many Devices
. A Device
has many Activities
. I want to refetch the user and all potential new Devices
and there Activities
. I tried .reload()
but this only refreshes the current models, it doesn’t fetch new ones.