-
Notifications
You must be signed in to change notification settings - Fork 4
Frequently used patterns
Maxime Labelle edited this page Mar 18, 2023
·
4 revisions
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 |