// Will filter by either "company.id"
// or "relatedCompanies.id"
company: { id: { eq: 429 } }
// String | Int can be used interchangeably for
company: { id: { eq: "429" } }
// Find alerts for any of the listed companies
company: { id: { in: ["429", "229"] } }
// Will find Alerts where the Company id is 429
// and dataset is either "jobs" or "pnl"
company: { id: { eq: 429 } },
dataset: { in: ["jobs", "pnl"] }
// Will find all "positive" Alerts with the
class: { code: { eq: "awards" } }
// Multiple operators can be combined together
// and will be executed with logical "AND".
// This filter will find alerts published
// between the given dates.