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
unlike the playground in python the flatten function flate the strings here the output from the playground vs the output from python of the same query and input data.
input:
["foo", "bar" , [{"text":"buz qux"}]]
query:
flatten() | filter(not(exists(.text)))
1 - playground:
["foo", "bar"]
2- python:
['f', 'o', 'o', 'b', 'a', 'r']