Search Optional
Description
Usage
.(#:<key>=<value>)Key
Value
Comparisons
Operator
Supported since
Example
Search by optional property
Last updated
.(#:<key>=<value>)Last updated
{
"users": [
{
"primary": true,
"name": {
"first": "Tom",
"last": "Wright"
}
},
{
"primary": false,
"name": {
"first": "Jim",
"last": "Wright"
}
},
{
"name": {
"first": "Frank",
"last": "Wright"
}
}
]
}$ dasel select -f input.json -m '.users.(#:primary=true).name.first'
"Tom"