This message was deleted.
# ask-questions
w
This message was deleted.
g
Current targeting condition looks like this:
Copy code
{
  "id": {
    "$inGroup": "grp_foo"
  }
}
thank you in advance!
f
yes
you can us the mongodb OR syntax
g
ahh thank you. I’ll try something like:
Copy code
{
  "id": {
    "$or": [
      {
        "$inGroup": "grp_foo"
      },
      {
        "$inGroup": "grp_bar"
      }
    ]
  }
}
👍 1
142 Views