Hi @Drew_DiPalma, how can this solution be adopted to work with $or? I have a very similar problem and the only difference is that I want to watch for 2 possible values of my own equivalent of @Carla_Wilby 's subscriptionStatus. So consider if Carla needed the trigger to fire when subscriptionStatus is either "current" or "pending". How would that work? I tried adjusting your solution like this (but it doesn’t work):
{
"$or": [{
"updateDescription": {
"updatedFields": {
"subscription": {
"subscriptionStatus":"current"
}
}
}
},
{
"updateDescription": {
"updatedFields": {
"subscription": {
"subscriptionStatus":"pending"
}
}
}
}]
}
What’s the correct way to achieve this? Thanks!