How can I get all properties, expect those with value null
using jmespath?
{
"foo": 10,
"bar": null,
"qux": ["Hello", "World"]
}
I'd like the result to be
{
"foo": 10,
"qux": ["Hello", "World"]
}
How can I get all properties, expect those with value null
using jmespath?
{
"foo": 10,
"bar": null,
"qux": ["Hello", "World"]
}
I'd like the result to be
{
"foo": 10,
"qux": ["Hello", "World"]
}