I want to filter the calls in My Calls to be only now and into the future.
I still want the full Calls listing to show everything
Can I accomplish this?
I still want the full Calls listing to show everything
Can I accomplish this?
searchData: {
bool: {
onlyMy: true,
},
advanced: {
status: {
type: 'notIn',
value: ['Held', 'Not Held']
},
dateStart: {
type: 'future',
dateTime: true
}
}
},
Comment