I would like to get the list of events based on a user custom field named "Company ID". How do I write this JQL query?
I tried this but didn't work:
function main() {
return Events({
from_date: '2019-05-08',
to_date: '2019-05-30',
})
People(),
{
type:"inner",
selectors:[{selector:
'properties["company_id"] == "0cd2eaf.....df1326ca"'}]
}
}