Request: nested_lookup multiple keys like nested_lookup('Code,Name,Street1',tmp) #39
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Created by: KarstenFischer
I would like to search multiple keys like nested_lookup('Code,Name,Street1',tmp)
Created by: KarstenFischer
This works as a work arround: list(zip(nested_lookup('Code',tmp),nested_lookup('Name',tmp),nested_lookup('Street1',tmp)))
... but it's not very handy.