Solved
Forum Discussion
koryknick
2 years agoEmployee
nickhumble - could you simply enable the "Null-safe access" option and always reference the values you're looking for? If it doesn't exist, it will just be a null value. This would bypass the need for the get() method, which as you have found out, can't be used under multiple levels of object nesting.
- nickhumble2 years agoNew Contributor II
Thanks koryknick - this might just be the simplistic genius i was looking for!