I'm trying to filter based on multiple terms. I am able to filter if I designate one term
[
"bool" => [
"must" => [
0 => [
"term" => [
"interests" => [
"value" => "art"
]
]
]
]
]
]
But when I use multiple terms I'm always getting an empty response.
[
"bool" => [
"must" => [
0 => [
"term" => [
"interests" => [
"value" => "art"
]
]
]
1 => [
"term" => [
"community_privacy" => [
"value" => "private"
]
]
]
]
]
]
Am I misunderstanding how I should be using multiple terms?