Skip to content

Frequently used patterns

Maxime Labelle edited this page Mar 18, 2023 · 4 revisions

Common requests

To achieve this… …write JMESPath expression Description
discard null from_items( items(@) [?@[1]] ) Discarding null or empty values
x ? y : z (x && y) || z Ternary operator

How to