I have below json. i want to query widgets whose createdAt value is greater than 1604047949428.
json →
{
“accountId”: “ABC”,
“haveUnreadConversation”: true,
“className”: “IntegratorUserChannel”,
“type”: “channels”,
“email":"abc@gmail.com”,
“conversations”: [
{
“widgets”: [
{
“createdAt”: 1604047949425,
“userResponse”: true,
“message”: “hi”
},
{
“createdAt”: 1604047949428,
“userResponse”: true,
“message”: “hello”
}
]
},
{
“widgets”: [
{
“createdAt”: 1604047949430,
“userResponse”: true,
“message”: “bye”
},
{
“createdAt”: 1604047949431,
“userResponse”: true,
“message”: “good”
}
]
}
]
}