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
Is your feature request related to a problem?
Currently, PPL doesn't support accessing values inside an array. For example,
{
"items": ["a", "b", "c"]
}
Users can't select value a, b, or c using PPL.
What solution would you like?
Users can access the first element of the array by using syntax like eval first_item = items[0], or it can be retrieved directly using the fields command, e.g. fields items[0].
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
Currently, PPL doesn't support accessing values inside an array. For example,
Users can't select value a, b, or c using PPL.
What solution would you like?
Users can access the first element of the array by using syntax like
eval first_item = items[0]
, or it can be retrieved directly using thefields
command, e.g.fields items[0]
.The text was updated successfully, but these errors were encountered: