FLATTEN
Description
FLATTEN
extracts either one or more keys from a dictionary. When extracting only one key the result is a list, when extracting multiple the result is a list of dictionaries
Example 1
This returns a list of just the keys, so in this case ['a', 'b', 'c', 'd']
Example 2
This returns a list of dictionaries with just the mentioned the keys, so in this case
Last updated