Hey @stefancvrkotic I think there is just a little syntax issue here. The variable obj is defined with pass
as one of the keys. You rename it to password in the script that runs query1 which is why it works there. But when keying into the object itself in query2 you use password
instead which isn't a key on the object. You can see in the output of that query that pass
is the key.
Fixing up that naming confusion seems to make this work in both contexts, but let me know if you see something else!