Frequently used patterns - jmespath-community/jmespath.spec GitHub Wiki
Common requests
To achieve this… | …write JMESPath expression | Description |
---|---|---|
discard null |
from_items( items(@) [[email protected][1]] ) |
Discarding null or empty values |
x ? y : z |
(x && y) || z |
Ternary operator |