helpful-hydrogen-62495
02/13/2022, 6:12 PM{
"env": "prod",
"firstOpen": {
"$gt": 1644728400
},
"$or": [
{
"$and": [
{
"phoneOS": "ios"
},
{
"nativeApplicationVersion": "1.1.5"
}
]
},
{
"$and": [
{
"phoneOS": "android"
},
{
"nativeApplicationVersion": "1.1.2"
}
]
}
]
}
future-teacher-7046
{
"$and": [
{
"env": "prod",
"firstOpen": {
"$gt": 1644728400
}
},
{
"$or": [
{
"phoneOS": "ios",
"nativeApplicationVersion": "1.1.5"
},
{
"phoneOS": "android",
"nativeApplicationVersion": "1.1.2"
}
]
]
}
{
"env": "prod",
"firstOpen": {
"$gt": 1644728400
},
"osAndVersion": {
"$in": [
"ios 1.1.5",
"android 1.1.2"
]
}
}