Hi, I'm trying to retrieve all documents with one or both of two booleans set to "true".
I've tried all sorts of variants on the below but no joy:
{
"condition": "OR",
"rules": [
{
"field": "behaviourist",
"operator": "==",
"value": true
},
{
"field": "trainer",
"operator": "==",
"value": true
}
]
}
Thanks in advance!