You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's say we have a List<Animal> animals, and then Animal has a field animalName. Now the below is getting resolved by the plugin:
{{animals.animalName}}
But animalName should not be resolved. The problem is because we return Animal as type when we resolve animals instead of List.
This needs to be fixed.
The text was updated successfully, but these errors were encountered:
Let's say we have a
List<Animal> animals
, and thenAnimal
has a fieldanimalName
. Now the below is getting resolved by the plugin:{{animals.animalName}}
But
animalName
should not be resolved. The problem is because we returnAnimal
as type when we resolveanimals
instead ofList
.This needs to be fixed.
The text was updated successfully, but these errors were encountered: