Query examples
This page provides additional examples of various queries for Alerts API
Find Alerts for a set of Companies between certain dates
query findAlerts {
alerts(
where: {
company: {
id: { in: [334, 1842] }
},
publishedAt: {
gte: "2021-01-01",
lte: "2021-02-01"
}
}
) {
id
text
title
company {
displayName
}
}
}Find all Alerts from a certain date till now
Fetch all available Alert fields
Fetch all available Commodity Alerts since the given date
Filter Alerts by Polarity
Last updated
Was this helpful?